Re: ANN: django-widget-tweaks

2011-01-12 Thread Leandro Ardissone
Great! I'll pass it to my designers! It really simplifies the templating. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-

Re: custom admin

2011-01-12 Thread Leandro Ardissone
There's a nice app called django-admin-tools, it let you create/edit a menu and a custom dashboard with draggable blocks of content. Templating/theming isn't really mature yet, but if you know how to theme django's admin, you will figure

Re: Field permissions in admin

2011-01-11 Thread Leandro Ardissone
Ok, I've just figured out, by using the get_form modelAdmin method. Here's my solution in case someone find it helpful: class EventAdmin(admin.ModelAdmin): list_display = ('title', 'description') search_fields = ('title', 'description') inlines = [OccurrenceInline] def get_fo

Field permissions in admin

2011-01-11 Thread Leandro Ardissone
Hi, I don't know if it's possible or if there's a better way to do that. I'm working on a website with 3 user groups (administrators, moderators and content editors). All of them can edit content, but I want to remove some fields from the content for the editors and moderators groups. For exam