Changeset c38decc


Ignore:
Timestamp:
Jul 24, 2011, 3:35:11 AM (14 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, space-access, stable, stage, test-hooks
Children:
ed8c1ab
Parents:
5b68039
git-author:
Alex Dehnert <adehnert@…> (07/24/11 03:35:11)
git-committer:
Alex Dehnert <adehnert@…> (07/24/11 03:35:11)
Message:

Add names to URL patterns

File:
1 edited

Legend:

Unmodified
Added
Removed
  • asadb/urls.py

    r65974d1 rc38decc  
    5050        name='group-list',
    5151    ),
    52     url(r'^group/(?P<pk>\d+)/$', groups.views.GroupDetailView.as_view(), ),
    53     url(r'^groups/recent_changes/$', groups.views.GroupHistoryView.as_view(), ),
    54     url(r'^group/(?P<group>\d+)/history/$', groups.views.GroupHistoryView.as_view(), ),
     52    url(r'^group/(?P<pk>\d+)/$', groups.views.GroupDetailView.as_view(), name='group-detail', ),
     53    url(r'^groups/recent_changes/$', groups.views.GroupHistoryView.as_view(), name='groups-manage-history', ),
     54    url(r'^group/(?P<group>\d+)/history/$', groups.views.GroupHistoryView.as_view(), name='group-manage-history', ),
    5555
    5656    # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
Note: See TracChangeset for help on using the changeset viewer.