diff -r b5bf2aa0f3f9 -r af56ae7397ab app/soc/views/models/org_app.py --- a/app/soc/views/models/org_app.py Sat Feb 07 13:36:50 2009 +0000 +++ b/app/soc/views/models/org_app.py Sat Feb 07 13:40:20 2009 +0000 @@ -63,7 +63,7 @@ # TODO(ljvderijk) fix host access check rights['review'] = ['checkIsHostForProgram', ('checkCanReviewGroupApp', [org_app_logic.logic])] - rights['review_overview'] = ['checkIsDeveloper'] + rights['review_overview'] = ['checkIsHostForProgram'] rights['apply'] = ['checkIsUser', ('checkCanCreateOrgApp', ['org_signup'])] @@ -79,7 +79,10 @@ patterns = [(r'^%(url_name)s/(?Papply)/%(scope)s$', 'soc.views.models.%(module_name)s.create', - 'Create an %(name_plural)s'),] + 'Create an %(name_plural)s'), + (r'^%(url_name)s/(?Plist)/%(scope)s$', + 'soc.views.models.%(module_name)s.create', + 'Create an %(name_plural)s')] new_params['extra_django_patterns'] = patterns