How can I MODIFY django to create “view” permission?
This is how I changed Django 1.0.2 to add ‘view’ permissions. Sorry there is no diff available. [X] 1. Added ‘view’ to default permission list #./contrib/auth/management/__init__.py def _get_all_permissions(opts): “Returns (codename, name) for all permissions in the given opts.” perms = [] for action in (‘add’, ‘change’, ‘delete’, ‘view’): perms.append((_get_permission_codename(action, opts), u’Can %s %s’ % (action, … Read more