From 3533cefc32264e86da551d48c31d8e548d7d94a3 Mon Sep 17 00:00:00 2001 From: Kracekumar Ramaraju Date: Sun, 17 May 2015 22:42:57 +0530 Subject: [PATCH] Fix the url --- junction/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/junction/urls.py b/junction/urls.py index a83fab85..1ddb59ce 100644 --- a/junction/urls.py +++ b/junction/urls.py @@ -27,7 +27,7 @@ url('^markdown/', include('django_markdown.urls')), # Proposals related - url(r'^(?P[\w-]+)/proposal/', include('junction.proposals.urls')), + url(r'^(?P[\w-]+)/proposals/', include('junction.proposals.urls')), # Static Pages. TODO: to be refactored url(r'^speakers/$', TemplateView.as_view(template_name='static-content/speakers.html',), name='speakers-static'),