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