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