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