~daker/loco-team-portal/fix.venues

« back to all changes in this revision

Viewing changes to loco_directory/teams/urls.py

  • Committer: Tarmac
  • Author(s): Adnane Belmadiaf
  • Date: 2013-02-18 20:46:13 UTC
  • mfrom: (610.2.2 fix.668015)
  • Revision ID: tarmac@geekpad-20130218204613-0n2om0xec1wpizh9
[r=] Added the ability to add LC feed on LTP
Added the ability to add LC meetings on LTP
Added LC members on LTP

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
urlpatterns = patterns('',
4
4
    url(r'^$', 'teams.views.team_list', name='team-list'),
5
 
    #url(r'^me$', 'teams.views.my_teams', name='my-teams'),
6
5
    url(r'(?P<team_slug>[a-zA-Z0-9\-\.\+?]+)/edit$', 'teams.views.team_edit', name='team-edit'),
7
6
    url(r'(?P<team_slug>[a-zA-Z0-9\-\.\+?]+)/merge/(?P<other_team_slug>[a-zA-Z0-9\-\.\+?]+)/$', 'teams.views.team_merge', name='team-merge'),
8
7
    url(r'(?P<team_slug>[a-zA-Z0-9\-\.\+?]+)/merge', 'teams.views.select_other_team', name='select-other-team'),