From 0485cab238fef6b9f9c325758dbf28706905cb77 Mon Sep 17 00:00:00 2001
From: Sashi20
Date: Wed, 26 Sep 2018 16:51:31 +0530
Subject: Extended last date for paper submission
---
website/views.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
(limited to 'website')
diff --git a/website/views.py b/website/views.py
index e545b53..784157d 100644
--- a/website/views.py
+++ b/website/views.py
@@ -228,7 +228,7 @@ def submitcfp(request):
message = """
Dear {0},
Thank you for showing interest & submitting a paper proposal at NCCPS-2018
- for the paper titled {1}. Reviewal of the proposals will start
+ for the paper titled "{1}". Reviewal of the proposals will start
once the CFP closes.
You will be notified regarding comments/selection/rejection of your paper via email.
Visit this {2} link to view the status of your submission.
@@ -236,7 +236,7 @@ def submitcfp(request):
""".format(
social_user.first_name,
request.POST.get('title', None),
- 'http://dwsim.fossee.in/nccps-2018/view-abstracts/',)
+ 'https://dwsim.fossee.in/nccps-2018/view-abstracts/',)
email = EmailMultiAlternatives(
subject, '',
sender_email, to,
@@ -291,7 +291,7 @@ def submitcfw(request):
""".format(
social_user.first_name,
request.POST.get('title', None),
- 'http://dwsim.fossee.in/nccps-2018/view-abstracts/',)
+ 'https://dwsim.fossee.in/nccps-2018/view-abstracts/',)
email = EmailMultiAlternatives(
subject, '',
sender_email, to,
--
cgit