diff options
author | Komal Sheth | 2016-12-01 16:06:31 +0530 |
---|---|---|
committer | GitHub | 2016-12-01 16:06:31 +0530 |
commit | e4d10668141487f4a987943aaab3354ae7fcdcd4 (patch) | |
tree | 08c1168d5fb2a4622a618de267452a484d7c4ad7 /website | |
parent | 76de2eaddc88dc1964abf6d56e7b616fa3ffc47d (diff) | |
parent | dcfbaf1c378e03795c9420b13a8ea1293fd4c902 (diff) | |
download | SciPy2016-e4d10668141487f4a987943aaab3354ae7fcdcd4.tar.gz SciPy2016-e4d10668141487f4a987943aaab3354ae7fcdcd4.tar.bz2 SciPy2016-e4d10668141487f4a987943aaab3354ae7fcdcd4.zip |
Merge pull request #42 from FOSSEE/Home_page
Email Template changed
Diffstat (limited to 'website')
-rwxr-xr-x | website/views.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/website/views.py b/website/views.py index ec1688e..46b1999 100755 --- a/website/views.py +++ b/website/views.py @@ -394,7 +394,7 @@ def comment_abstract(request, proposal_id = None): sender_email = "scipy@fossee.in" to = (proposal.user.email, "scipy@fossee.in" ) if proposal.proposal_type == 'ABSTRACT': - subject = "SciPy India 216 - Comment on Your talk Proposal" + subject = "SciPy India 2016 - Comment on Your talk Proposal" message = """ Dear {0}, <br><br> There is a comment posted on your proposal for the talk titled <b>{1}</b>.<br> @@ -407,7 +407,7 @@ def comment_abstract(request, proposal_id = None): 'http://scipy.in/2016/abstract-details/' + str(proposal.id), ) elif proposal.proposal_type =='WORKSHOP': - subject = "SciPy India 216 - Comment on Your Workshop Proposal" + subject = "SciPy India 2016 - Comment on Your Workshop Proposal" message = """ Dear {0}, <br><br> There is a comment posted on your proposal for the workshop titled <b>{1}</b>.<br> @@ -502,7 +502,7 @@ def status(request, proposal_id= None): sender_name = "SciPy India 2016" sender_email = "scipy@fossee.in" if proposal.proposal_type == 'ABSTRACT': - subject = "SciPy India 216 - Talk Proposal Resumbmission" + subject = "SciPy India 2016 - Talk Proposal Resumbmission" message = """ Dear {0}, <br><br> Thank you for showing interest & submitting a talk proposal at SciPy India 2016 conference for the talk titled <b>"{1}"</b>. You are requested to submit this talk proposal once again.<br> @@ -515,7 +515,7 @@ def status(request, proposal_id= None): 'http://scipy.in/2016/view-abstracts/' ) elif proposal.proposal_type =='WORKSHOP': - subject = "SciPy India 216 - Workshop Proposal Resubmission" + subject = "SciPy India 2016 - Workshop Proposal Resubmission" message = """ Thank you for showing interest & submitting a workshop proposal at SciPy India 2016 conference for the workshop titled <b>"{1}"</b>. You are requested to submit this talk proposal once again.<br> You will be notified regarding comments/selection/rejection of your workshop via email. @@ -679,7 +679,7 @@ def status_change(request): sender_email = "scipy@fossee.in" to = (proposal.user.email, "scipy@fossee.in" ) if proposal.proposal_type == 'ABSTRACT': - subject = "SciPy India 216 - Talk Proposal Resumbmission" + subject = "SciPy India 2016 - Talk Proposal Resumbmission" message = """ Dear {0}, <br><br> Thank you for showing interest & submitting a talk proposal at SciPy India 2016 conference for the talk titled <b>"{1}"</b>. You are requested to submit this talk proposal once again.<br> @@ -692,7 +692,7 @@ def status_change(request): 'http://scipy.in/2016/view-abstracts/' ) elif proposal.proposal_type =='WORKSHOP': - subject = "SciPy India 216 - Workshop Proposal Resubmission" + subject = "SciPy India 2016 - Workshop Proposal Resubmission" message = """ Thank you for showing interest & submitting a workshop proposal at SciPy India 2016 conference for the workshop titled <b>"{1}"</b>. You are requested to submit this talk proposal once again.<br> You will be notified regarding comments/selection/rejection of your workshop via email. |