app/soc/views/helper/params.py
changeset 1343 4ba39392c854
parent 1338 4b8546a3b20c
child 1345 1c5c6271f02e
--- a/app/soc/views/helper/params.py	Sun Feb 15 14:57:03 2009 +0000
+++ b/app/soc/views/helper/params.py	Sun Feb 15 14:58:03 2009 +0000
@@ -128,6 +128,8 @@
   new_params['django_patterns_defaults'] = [
       (r'^%(url_name)s/(?P<access_type>show)/%(key_fields)s$',
           'soc.views.models.%(module_name)s.public', 'Show %(name_short)s'),
+      (r'^%(url_name)s/(?P<access_type>admin)/%(key_fields)s$',
+          'soc.views.models.%(module_name)s.admin', 'Show %(name_short)s (admin)'),
       (r'^%(url_name)s/(?P<access_type>export)/%(key_fields)s$',
           'soc.views.models.%(module_name)s.export', 'Export %(name_short)s'),
       (r'^%(url_name)s/(?P<access_type>delete)/%(key_fields)s$',
@@ -177,6 +179,7 @@
   new_params['export_template'] = 'soc/%(module_name)s/export.html' % params
   new_params['create_template'] = 'soc/models/edit.html'
   new_params['edit_template'] = 'soc/models/edit.html'
+  new_params['admin_template'] = 'soc/models/admin.html'
   new_params['list_template'] = 'soc/models/list.html'
   new_params['invite_template'] = 'soc/models/invite.html'