X-Git-Url: https://git.yukkurigames.com/?p=mlpccg-meta.git;a=blobdiff_plain;f=mlpccg-web%2Furls.py;h=a0f9650589ac2dbb7552007f75be2d3a6ab523c5;hp=f00f3e842d44b482a02bdb57f3b8be5d052b80c3;hb=227cf8c2dd8053ffd94c027365f88d04c2b85e3a;hpb=cfa1a6d3d0f2fd3a9539e5a19601a7ad22b136fc diff --git a/mlpccg-web/urls.py b/mlpccg-web/urls.py index f00f3e8..a0f9650 100644 --- a/mlpccg-web/urls.py +++ b/mlpccg-web/urls.py @@ -7,8 +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'^meta/tournaments/(?P\d+)$', 'meta.views.tournaments_detail') + url(r'^rate$', 'meta.views.rate'), + url(r'^tournaments$', 'meta.views.tournaments'), + url(r'^tournaments/(?P\d+)$', 'meta.views.tournaments_detail') )