Some days ago I worked with Confluence.
This tool has a great feature: You can insert a paginated queryset in a
page. Without coding, all WYSIWYG:
Docs:
https://confluence.atlassian.com/doc/page-properties-report-macro-186089616.html
Is there a way to get this cool feature into django?
Regard
lo,
>
> I’m trying to install WYSIWYG editor and file browser which allows user
> to upload images. Then these images can be inserted into users article.
> I also have multiple users registered on my site and I need
> separate/hide one users’ images from another user.
>
> U
Hello,
I’m trying to install WYSIWYG editor and file browser which allows user
to upload images. Then these images can be inserted into users article.
I also have multiple users registered on my site and I need
separate/hide one users’ images from another user.
Using django-tinymce4-lite [1
thanks, i will look at the documentation
On Jun 15, 2017 3:32 PM, "Karol Bujaček" wrote:
> On 06/15/2017 04:16 PM, ADEWALE ADISA wrote:
>
>>
>> Pls, I need a recommendation for the best easy to implement editor that
>> non technical user can use to add image, table to document in django admin
>>
On 06/15/2017 04:16 PM, ADEWALE ADISA wrote:
Pls, I need a recommendation for the best easy to implement editor
that non technical user can use to add image, table to document in
django admin textarea.
I want my users to be using django admin as there backend when
creating blog content and th
Pls, I need a recommendation for the best easy to implement editor that non
technical user can use to add image, table to document in django admin
textarea.
I want my users to be using django admin as there backend when creating
blog content and they needed the following functionality:
1. insertin
It does help.
I will continue on their github page.
Thank you for your kind help.
Best.
Hemulin
On Wednesday, June 3, 2015 at 3:30:12 AM UTC+3, James Schneider wrote:
>
> Sorry about that. What I meant was what do the URL's look like after the
> template rendering completes (ie what does the bro
Sorry about that. What I meant was what do the URL's look like after the
template rendering completes (ie what does the browser see as the value for
your tags). Since it is breaking while editing the
document, that question is now moot.
Your media settings are probably OK (however I'm smashing to
I'm not sure I understood your question.
If by "final HTML" you mean the rendered template which displays the
article, then there's nothing interesting here. I'm just passing the
article in the context to the template and in the template assigning in
various tags the relevant content ({% article
Have you validated that the URL being generated in the final HTML (the
source HTML in the browser) is pointing to the right location? If not, I
would tend to agree with your assertion that the media settings need
tweaking.
-James
On Jun 2, 2015 1:17 PM, "hemulin" wrote:
> Hi,
> not sure what I'v
Hi,
not sure what I've done but I don't get the error anymore, instead I got
nothing. No error, no image in the preview and no image after the saving
and displaying the article.
To your questions, yes and yes. I can find the image in the server (under
static/media/django-summernote/), and I can
Can you post the full error you're receiving? The 'blah blah blah' is
probably the most important. A mention of MIME types likely means that the
image is not uploading correctly. Can you actually find the image on the
server? Or a record of it in the database?
-James
On Jun 1, 2015 6:56 PM, "he
(noob warning)
I wanted to use summernote within a model but without using the default
modelForm.
I ended up mixing the two like this (can't have widgets on model field...):
In models I have
class Article(models.Model):
"""Represents a wiki article"""
title = models.CharField(max_length=100)
Thanks everyone, got it right.
On Wed, Sep 22, 2010 at 8:31 PM, tricks...@googlemail.com <
p...@hotmail.co.uk> wrote:
> What do you have in your settings.py?
>
> Make Sure you have the following configs
>
> TINYMCE_JS_URL (default: settings.MEDIA_URL + 'js/tiny_mce/
> tiny_mce.js')
> TINYMCE_
What do you have in your settings.py?
Make Sure you have the following configs
TINYMCE_JS_URL (default: settings.MEDIA_URL + 'js/tiny_mce/
tiny_mce.js')
TINYMCE_JS_ROOT (default: settings.MEDIA_ROOT + 'js/tiny_mce')
TINYMCE_DEFAULT_CONFIG (default: {'theme': "simple", 'relative_urls':
False})
Dnia 22-09-2010 o 14:41:56 Sithembewena Lloyd Dube
napisał(a):
btw, it's an ordinary, pure tinyMCE, downloaded directly from their website
--
Linux user
--
You received this message because you are subscribed to the Google Groups "Django
users" group.
To post to this group, send email to dj
Dnia 22-09-2010 o 14:41:56 Sithembewena Lloyd Dube
napisał(a):
I implemented bagheera's suggestion and I seem to have run into a
problem. The TimnyMCE javascripts are in the admin's js folder, but when
I view source and click on the links in Firefox, the files cannot be
found. This is od
On Wed, 2010-09-22 at 11:22 +0200, Sithembewena Lloyd Dube wrote:
>
> Thank you all for your contributions. I have resolved to give tinyMCE
> a go
> again. I am specifically using the django-tinymce application.
never used that - I use plain tiny as mentioned in my previous mail
--
regards
Kenn
on.
>
>
> On Wed, Sep 22, 2010 at 2:45 AM, Kenneth Gonsalves wrote:
>
>> On Tue, 2010-09-21 at 17:41 +0200, Sithembewena Lloyd Dube wrote:
>> > Has anybody intergrated a WYSIWYG editor in the admin of a Django
>> > 1.2.1.
>> > site? I have tried django-wys
rgrated a WYSIWYG editor in the admin of a Django
> > 1.2.1.
> > site? I have tried django-wysiwyg and TinyMCE to no avail. I need
> > something
> > with concise, up-to-date documentation.
>
> a snippet from my admin.py:
>
> class ArticleAdmin(admin.ModelAdmin):
&g
On Tue, 2010-09-21 at 17:41 +0200, Sithembewena Lloyd Dube wrote:
> Has anybody intergrated a WYSIWYG editor in the admin of a Django
> 1.2.1.
> site? I have tried django-wysiwyg and TinyMCE to no avail. I need
> something
> with concise, up-to-date documentation.
a snippet f
'#%(id)s').blur(function(){$(this).wysiwyg('setContent',$
(this).val())});
""" % {'id':subs['id']}
template = u"""%(value)s$(function(){ $('#%(id)s').wysiwyg(%(params)s);%
(button_code)s});%(button)s&quo
Dnia 21-09-2010 o 17:41:26 Sithembewena Lloyd Dube
napisał(a):
Hi,
Has anybody intergrated a WYSIWYG editor in the admin of a Django 1.2.1.
site? I have tried django-wysiwyg and TinyMCE to no avail. I need
something
with concise, up-to-date documentation.
If anybody has done this
Hi,
Has anybody intergrated a WYSIWYG editor in the admin of a Django 1.2.1.
site? I have tried django-wysiwyg and TinyMCE to no avail. I need something
with concise, up-to-date documentation.
If anybody has done this, please recommend and also point to the docs?
Thanks.
--
Regards
Done. http://code.djangoproject.com/wiki/CookBookAdminTools
"Igor Goryachieff" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
> On Mon, Sep 12, 2005 at 02:57:53PM -0500, Eugene Lazutkin wrote:
>> I use TinyMCE (http://tinymce.moxiecode.com/). It's not without quirks
>> but
>> it
On Mon, Sep 12, 2005 at 02:57:53PM -0500, Eugene Lazutkin wrote:
> I use TinyMCE (http://tinymce.moxiecode.com/). It's not without quirks but
> it is useable.
>
> You should include js in your model like that:
[...]
Eugene,
Could you be so kind to add this recipe into wiki CookBook?
Thanks.
inyMCE. But if you want to make it bigger, just
follow http://www.djangoproject.com/documentation/admin_css/ and change the
height of textarea in question.
Thanks,
Eugene
"Mookai" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
> Hi,
>
> I think it is
I wrote two quick howto's on integrating existing wysiwyg interfaces
with Django
TinyMCE
http://www.socialistsoftware.com/?p=8
Xinha
http://www.socialistsoftware.com/?p=10
It is pretty easy to figure out for just about any javascript wysiwyg
interface you might find.
Hi,
if you want a templating language editable in a WYSIWYG editor, take a
look at DjangoPageTemplate
(http://www.zope.org/Members/shh/DjangoPageTemplates/1.0.0/readme.txt)
It's an implementation to use TAL, TALES, and METAL template system
with Django.
Hope it helps.
Hi,
I think it is user friendly to have a wysiwyg editor for large text
area's in a site. But I could use some pointers if any available how I
could accomplish this in the auto generated admin pages. I could use a
filter (markdown, textile), but that isn't close to a wysiwyg editor.
Greetz,
30 matches
Mail list logo