diff options
author | Sashi20 | 2018-10-23 16:12:58 +0530 |
---|---|---|
committer | GitHub | 2018-10-23 16:12:58 +0530 |
commit | 696c863beba76f76b8496ef1c63e4b3020de8ee9 (patch) | |
tree | bcad4c8f7ddd9fcb0165e10b67a73362c75d942e | |
parent | ee89bf58d664c68a37c7261cadb8be924c584937 (diff) | |
parent | adfcc5010396600003b9c6c6ae39534527df0e12 (diff) | |
download | nccps-2018-696c863beba76f76b8496ef1c63e4b3020de8ee9.tar.gz nccps-2018-696c863beba76f76b8496ef1c63e4b3020de8ee9.tar.bz2 nccps-2018-696c863beba76f76b8496ef1c63e4b3020de8ee9.zip |
Merge pull request #40 from Sashi20/master
Modified status change view
-rw-r--r-- | website/views.py | 62 |
1 files changed, 40 insertions, 22 deletions
diff --git a/website/views.py b/website/views.py index 8e722ae..18092c0 100644 --- a/website/views.py +++ b/website/views.py @@ -547,6 +547,16 @@ def status(request, proposal_id=None): Pardon the unsolicited advice but it is important that you plan your presentations carefully. 15 minutes is a good amount of time to communicate your central idea. Most really good TED talks finish in 15 minutes. Keep your talk focussed and please do rehearse your talk and slides to make sure it flows well. If you need help with this, the program chairs can try to help you by giving you some early feedback on your slides. Just upload your slides before 26th on the same submission interface and we will go over it once. For anything submitted after 26th we may not have time to comment on but will try to give you feedback. Please also keep handy a PDF version of your talk in case your own laptops have a problem. Please confirm your participation. The schedule will be put up online by end of day. We look forward to hearing your talk. \n\nYou will be notified regarding instructions of your talk via email.\n\nThank You ! \n\nRegards,\nNCCPS 2018,\nFOSSEE - IIT Bombay""" + elif proposal.proposal_type == 'WORKSHOP': + subject = "NCCPS 2018 - Workshop Proposal Accepted" + message = """Dear """+proposal.user.first_name+""", + Thank you for your excellent submissions! We are pleased to accept your workshop. Due to the large number of submissions we have decided to accept 8 workshops and give all the selected workshops 2 hours each. Please plan for 1 hour and 55 minutes in order to give the participants a 10 minute break between workshops for tea. + The tentative schedule will be put up on the website shortly. Please do provide detailed instructions for the participants (and the organizers if they need to do something for you) in your reply. Please also confirm your participation. + We strongly suggest that you try to plan your workshops carefully and focus on doing things hands-on and not do excessive amounts of theory. Try to give your participants a decent overview so they can pick up additional details on their own. It helps to pick one or two overarching problems you plan to solve and work your way through the solution of those. + Installation is often a problem, so please make sure your instructions are simple and easy to follow. If you wish, we could allow some time the previous day for installation help. Let us know about this. Also, do not waste too much time on installation during your workshop. + \n\nYou will be notified regarding instructions of your talk via email.\n\nThank You ! \n\nRegards,\nNCCPS 2018,\nFOSSEE - IIT Bombay""" + #send_mail(subject, message, sender_email, to) + # context.update(csrf(request)) elif 'reject' in request.POST: proposal.status = "Rejected" proposal.save() @@ -567,13 +577,24 @@ def status(request, proposal_id=None): proposal.title, 'https://dwsim.fossee.in/nccps-2018/accounts/login/' 'https://dwsim.fossee.in/nccps-2018/#registration',) - email = EmailMultiAlternatives( - subject, '', - sender_email, to, - headers={"Content-type": "text/html;charset=iso-8859-1"} - ) - email.attach_alternative(message, "text/html") - email.send(fail_silently=True) + + elif proposal.proposal_type == 'WORKSHOP': + subject = "NCCPS 2018 - Workshop Proposal Rejected" + message = """Dear """+proposal.user.first_name+""", + Thank you for your submission to the conference. + Unfortunately, due to the large number of excellent workshops submitted, yours was not selected. We hope you are not discouraged and request you to kindly attend the conference and participate. We have an excellent line up of workshops (8 in total) and many excellent talks. You may also wish to give a lightning talk (a short 5 minute talk) at the conference if you so desire. + We look forward to your active participation in the conference. + \n\nThank You ! \n\nRegards,\nNCCPS 2018,\nFOSSEE - IIT Bombay""" + # message = """Dear """+proposal.user.first_name+""", + # Thank you for your excellent workshop submission titled “Digital forensics using Python”. The program committee was really excited about your proposal and thought it was a very good one. While the tools you use are certainly in the NCCPS toolstack the application was not entirely in the domain of the attendees we typically have at NCCPS. This along with the fact that we had many really good workshops that were submitted made it hard to select your proposal this time -- your proposal narrowly missed out. We strongly suggest that you submit this to other more generic Python conferences like the many PyCon and PyData conferences as it may be a much better fit there. We also encourage you to try again next year and if we have a larger audience, we may have space for it next year. This year with two tracks we already have 8 excellent workshops selected. + + # We really hope you are not discouraged as it was indeed a very good submission and a rather original one at that. We hope you understand and do consider participating in the conference anyway. + + # We look forward to seeing you at the conference and to your continued interest and participation. + # \n\nRegards,\n\nNCCPS Program chairs""" + + #send_mail(subject, message, sender_email, to) + # context.update(csrf(request)) elif 'resubmit' in request.POST: to = (proposal.user.email, TO_EMAIL) sender_name = "NCCPS 2018" @@ -592,13 +613,6 @@ def status(request, proposal_id=None): proposal.title, 'http://dwsim.fossee.in/nccps-2018/view-abstracts/' ) - email = EmailMultiAlternatives( - subject, '', - sender_email, to, - headers={"Content-type": "text/html;charset=iso-8859-1"} - ) - email.attach_alternative(message, "text/html") - email.send(fail_silently=True) elif proposal.proposal_type == 'WORKSHOP': subject = "NCCPS 2018 - Workshop Proposal Resubmission" message = """ @@ -751,14 +765,18 @@ We strongly suggest that you try to plan your workshops carefully and focus on d to = (proposal.user.email, TO_EMAIL) if proposal.proposal_type == 'PAPER': subject = "NCCPS 2018 - Paper Proposal Rejected" - message = """Dear """+proposal.user.first_name+""", - We are thankful for your submission and patience. - We regret to inform you that your paper titled """ +proposal.title+""" is not selected for NCCPS-2018. Please check the feedback of reviewers by logging in at - You are welcome to attend the conference. Please register at http://dwsim.fossee.in/nccps-2018/ - \n\nThank You ! \n\nRegards,\nNCCPS 2018,\nFOSSEE - IIT Bombay""".format( - proposal.user.first_name, - proposal.title, - ) + message = """ + Dear {0}, <br><br> + Thank you for your excellent submissions! Your talk has been accepted! This year we received many really good submissions. Due to the number and quality of the talks this year we have decided to give 20 minute slots to all the accepted talks. So even though you may have submitted a 30 minute one, we are sorry you will only have 20 minutes. Of these 20 minutes please plan to do a 15 minute talk (we will strive hard to keep to time), and keep 5 minutes for Q&A and transfer. We will have the next speaker get ready during your Q&A session in order to not waste time. + Pardon the unsolicited advice but it is important that you plan your presentations carefully. 15 minutes is a good amount of time to communicate your central idea. Most really good TED talks finish in 15 minutes. Keep your talk focussed and please do rehearse your talk and slides to make sure it flows well. + We (the program chairs) are happy to help you by giving you some early feedback on your slides. Just upload your slides before 26th and we will go over it once. You may upload your slides by clicking on edit when you login to the site. You may also modify your abstract if you want to improve it. For anything submitted after 26th we may not have time to comment but will try to give you feedback. Please also keep handy a PDF version of your talk in case your own laptops have a problem. + Please confirm your participation via return email. The tentative schedule will be put up online by end of day. We look forward to hearing your talk. + + """.format( + proposal.user.first_name, + proposal.title, + 'http://dwsim.fossee.in/nccps-2018/view-abstracts/' + ) # message = """Dear """+proposal.user.first_name+""", # Your talk was rejected because the contents of your work (your report for example) were entirely plagiarized. This is unacceptable and this amounts to severe academic malpractice and misconduct. As such we do not encourage this at any level whatsoever. We strongly suggest that you change your ways. You should NEVER EVER copy paste any content, no matter where you see it. Even if you cite the place where you lifted material from, it is not acceptable to copy anything verbatim. Always write in your own words. Your own personal integrity is much more important than a publication. When giving a tutorial it is understandable that you may use material that someone else has made if you acknowledge this correctly and with their full knowledge. However, the expectation is that you have done something yourself too. In your case a bulk of the work seems plagiarized and even if your talk material is your own, your act of plagiarizing content for your report is unacceptable to us. |