From a7dfa06c1e3bd3a78b2c4de041ce32727f0487f3 Mon Sep 17 00:00:00 2001 From: Jess Date: Wed, 27 Aug 2014 13:40:10 +0200 Subject: [PATCH] add redirect to meta index --- mlpccg-web/urls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mlpccg-web/urls.py b/mlpccg-web/urls.py index 4870720..f86c04d 100644 --- a/mlpccg-web/urls.py +++ b/mlpccg-web/urls.py @@ -6,6 +6,7 @@ admin.autodiscover() 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'), ) -- 2.20.1