X-Git-Url: https://git.yukkurigames.com/?p=mlpccg-meta.git;a=blobdiff_plain;f=mlpccg-web%2Furls.py;h=b6109fee1f1795feab9cc6429d7d4dd344a96ed7;hp=a0f9650589ac2dbb7552007f75be2d3a6ab523c5;hb=HEAD;hpb=227cf8c2dd8053ffd94c027365f88d04c2b85e3a 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') )