Hi
I use Django 1.1 and I would like to display in admin panel different
model name.
For example from code:
class Category(models.Model):
in admin panel I receive
'Categorys' instead of Categories
I googled for this and try:
class Category(models.Model):
verbose_name = "Kategoria"
verbose_name_plural = "Kategorie"
but it is not working. Is there any other possibility to achive that?
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
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.