Changeset 3398d3a
- Timestamp:
- May 21, 2011, 2:29:57 AM (15 years ago)
- Branches:
- master, space-access, stable, stage, test-hooks
- Children:
- 062a126
- Parents:
- 209218e
- git-author:
- Alex Dehnert <adehnert@…> (05/21/11 02:29:57)
- git-committer:
- Alex Dehnert <adehnert@…> (05/21/11 02:29:57)
- Location:
- asadb
- Files:
-
- 2 edited
-
groups/admin.py (modified) (1 diff)
-
settings.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
asadb/groups/admin.py
r59e8bf3 r3398d3a 1 1 import groups.models 2 2 from django.contrib import admin 3 from reversion.admin import VersionAdmin 3 4 4 class GroupAdmin( admin.ModelAdmin):5 class GroupAdmin(VersionAdmin): 5 6 list_display = ( 6 7 'id', -
asadb/settings.py
r8669a34 r3398d3a 72 72 'django.contrib.auth.middleware.AuthenticationMiddleware', 73 73 'django.middleware.transaction.TransactionMiddleware', 74 'reversion.middleware.RevisionMiddleware', 74 75 ] 75 76 … … 99 100 'django.contrib.sessions', 100 101 'django.contrib.sites', 102 'reversion', 101 103 'south', 102 104 'groups',
Note: See TracChangeset
for help on using the changeset viewer.