Hello all,
I have a list of all users. My head table is made with the fields
from User class. So look like this:
username first name last name
superuser status
I want to make this head table editable. How can I change the caption
of the field, not the name of it. By ex: is_superuser field is build
like this:
is_superuser = models.BooleanField(_('superuser status'),
default=False, help_text=_("Designates that this user has all
permissions without explicitly assigning them."))
In my table is list superuser status not is_superuser, this is good.
How can I change: "superuser status" in something else from a view.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---