X-Git-Url: https://git.yukkurigames.com/?p=mlpccg-meta.git;a=blobdiff_plain;f=mlpccg-web%2Furls.py;h=a0f9650589ac2dbb7552007f75be2d3a6ab523c5;hp=2c05e731a94c8247ba6a16b0463a2307862c4257;hb=227cf8c2dd8053ffd94c027365f88d04c2b85e3a;hpb=ac0c692e40ad6aca1b28199a4ef9c850fa680427 diff --git a/mlpccg-web/urls.py b/mlpccg-web/urls.py index 2c05e73..a0f9650 100644 --- a/mlpccg-web/urls.py +++ b/mlpccg-web/urls.py @@ -7,7 +7,7 @@ urlpatterns = patterns( '', url(r'^admin/', include(admin.site.urls)), url(r'^$', 'meta.views.index'), - url(r'^meta/$', 'meta.views.index'), - url(r'^meta/rate$', 'meta.views.rate'), - url(r'^meta/tournaments', 'meta.views.tournaments') + url(r'^rate$', 'meta.views.rate'), + url(r'^tournaments$', 'meta.views.tournaments'), + url(r'^tournaments/(?P\d+)$', 'meta.views.tournaments_detail') )