On Wednesday 09 Sep 2009 1:44:53 am DrKen wrote:
> Hi, new to Django and tinyMCE. I'm trying to get the tinyMCE HTML
> editor working on the admin page, so started out by doing the Django
> tutorial, then attempting to modify. I've got the admin page working
> with text fields instead of character fields, but don't see any change
> whatsoever when I convert the fields to HTMLField() - my html content
> appears as straight text, no syntax highlighting etc. I've googled all
> over for suggestions and tried several dozen, but something is still
> not happening. According to what I've been reading, this should bring
> up an HTML editor on all of the (one) text fields. Suggestions
> appreciated.

here is a snippet of my admin.py:

from southzone.web.models import *
from django.contrib import admin
    
class StaticpageAdmin(admin.ModelAdmin):
    list_display = ['page',]
    class Media:
        js = ('/sitemedia/js/tiny_mce/jscripts/tiny_mce/tiny_mce.js',
              '/sitemedia/js/tiny_mce/jscripts/tiny_mce/textareas.js',)
-- 
regards
kg
http://lawgon.livejournal.com

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to