Changeset 3681
- Timestamp:
- 08/30/06 11:39:18 (2 years ago)
- Files:
-
- django/trunk/django/contrib/auth/models.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/auth/models.py
r3376 r3681 34 34 Permissions are set globally per type of object, not per specific object instance. It is possible to say "Mary may change news stories," but it's not currently possible to say "Mary may change news stories, but only the ones she created herself" or "Mary may only change news stories that have a certain status or publication date." 35 35 36 Three basic permissions -- add, c reate and delete -- are automatically created for each Django model.36 Three basic permissions -- add, change and delete -- are automatically created for each Django model. 37 37 """ 38 38 name = models.CharField(_('name'), maxlength=50)
