Ticket #8162: permissions.2.diff

File permissions.2.diff, 277 bytes (added by Julia, 16 years ago)
Line 
1Three basic permissions -- add, change and delete -- are automatically created for each Django model.
2 """
3 name = models.CharField(_('name'), max_length=100)
4 content_type = models.ForeignKey(ContentType)
5 codename = models.CharField(_('codename'), max_length=100)
Back to Top