~ronnie.vd.c/loco-team-portal/494950_db_approved

« back to all changes in this revision

Viewing changes to loco_directory/teams/urls.py

  • Committer: Daniel Holbach
  • Date: 2009-12-21 11:03:49 UTC
  • Revision ID: daniel.holbach@canonical.com-20091221110349-bo2zmme5i2e4egif
start at revision 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from django.conf.urls.defaults import *
 
2
 
 
3
urlpatterns = patterns('',
 
4
    url(r'^$', 'teams.views.team_list', name='team-list'),
 
5
    url(r'reapprovals', 'teams.views.reapprovals'),
 
6
    url(r'(?P<team_slug>[a-zA-Z0-9\-\.\+?]+)/edit$', 'teams.views.team_edit', name='team-edit'),
 
7
    url(r'(?P<team_slug>[a-zA-Z0-9\-\.\+?]+)$', 'teams.views.team_detail', name='team-detail'),
 
8
)