> Quick question.  Is there any way to add a verbose name for
> one of my apps?  I have an app named my_transfers and in the

http://www.djangoproject.com/documentation/model-api/#verbose-name

Use the verbose_name of the Meta class:

class MyModel(Model):
    ...
    class Meta:
       verbose_name = 'My glorious model of perfection'
       verbose_plural_name = 'My glorious models of perfection"



-tim



--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to