I have a couple of questions i would think have some pretty straightforward answers, answers i've been unable to dig up in the docs. All i want to do in my admin interface is be able to specify the name of a field via admin.py (i.e. have the name of a field on the backend come from admin.py, not the model's field name), but i couldn't find as much in the documentation on the admin site. Would it be something like:
class FlatPageAdmin(admin.ModelAdmin): fieldsets = ( (None, { 'fields': ('url':'url of object', 'title':'title of object', 'content':'object content', 'sites':'sites you dingus') Also, i tried using the description key in field options, but it did not work. Could someone who has used it show me some toy syntax as that seems to be the reason i can't get it working. As always, any help would be greatly appreciated! --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---