Renamed group.views.all_photos() back to chair_photos(). Added differentiated ordering by role to group photo pages. Moved the external links (dependency graph and tools pages) off of the tabs, to the charter page.

- Legacy-Id: 11304
This commit is contained in:
Henrik Levkowetz 2016-06-09 21:58:35 +00:00
parent 7c53eb1843
commit 3e54101e06

View file

@ -19,6 +19,6 @@ urlpatterns = patterns('',
(r'^bofs/$', views.bofs),
(r'^email-aliases/$', 'ietf.group.views.email_aliases'),
(r'^bofs/create/$', views_edit.edit, {'action': "create"}, "bof_create"),
(r'^photos/$', views.all_photos),
(r'^photos/$', views.chair_photos),
(r'^(?P<acronym>[a-zA-Z0-9-._]+)/', include('ietf.group.urls_info_details')),
)