From 7f03e423e37e21db9861a10d050d9b8321d8e9ec Mon Sep 17 00:00:00 2001
From: prashantsinalkar
Date: Thu, 14 Sep 2017 11:38:53 +0530
Subject: fixed submit cfp url
---
website/templates/submit-cfp.html | 1 +
website/templates/view-abstracts.html | 4 ++--
website/urls.py | 2 +-
3 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/website/templates/submit-cfp.html b/website/templates/submit-cfp.html
index e2bf5de..4629883 100755
--- a/website/templates/submit-cfp.html
+++ b/website/templates/submit-cfp.html
@@ -22,6 +22,7 @@
{% if proposals_a > 1 %} You have exceeded the abstract submission limit.
You may view your submitted proposals by clicking here
+ {% else %}
Proposal Guidelines
- The project you are willing to present should be an actual implementation rather than just an idea.
diff --git a/website/templates/view-abstracts.html b/website/templates/view-abstracts.html
index d58ad48..c55e87a 100755
--- a/website/templates/view-abstracts.html
+++ b/website/templates/view-abstracts.html
@@ -27,7 +27,7 @@
{% if not proposals %}
- You have not submitted any proposal. To submit proposal click here
+ You have not submitted any proposal. To submit proposal click here
{% else %}
{% if user.is_superuser %}
@@ -127,7 +127,7 @@
{% if user.is_superuser %}
-
+
diff --git a/website/urls.py b/website/urls.py
index 06a62ef..f0203c8 100755
--- a/website/urls.py
+++ b/website/urls.py
@@ -13,7 +13,7 @@ urlpatterns = patterns('',
#url(r'^submit-cfp/$', 'website.views.cfp', name='home'),
#url(r'^submit-cfw/$', 'website.views.home', name='home'),
url(r'^accounts/register/$', 'website.views.userregister', name='userregister'),
- url(r'^accounts/login/$', 'website.views.cfp', name='cfp'),
+ #url(r'^accounts/login/$', 'website.views.cfp', name='cfp'),
url(r'^gallery/$', 'website.views.gallery', name='gallery'),
# url(r'^view-abstracts/$', 'website.views.view_abstracts', name='view_abstracts'),
url(r'^view-abstracts/$', 'website.views.view_abstracts', name='view_abstracts'),
--
cgit