From 0d2e0f5384be0e3b20a8cdcff30ea16cb632841a Mon Sep 17 00:00:00 2001 From: Sashi20 Date: Fri, 31 Aug 2018 17:08:14 +0530 Subject: Added tentative schedule,registration table,guidelines for cfp --- nccps2018/urls.py | 27 +- static/website/bootstrap-css/assets/css/main.css | 19 +- .../bootstrap-css/assets/images/favicon.png | Bin 0 -> 2519 bytes static/website/bootstrap-css/custom.css | 3 +- .../images/loader-64x/Preloader_2.gif.gif | Bin 0 -> 723 bytes static/website/templates/abstract-details.html | 44 ++ static/website/templates/cfp.html | 56 +- static/website/templates/comment-abstract.html | 98 +++ static/website/templates/edit-proposal.html | 35 + static/website/templates/header.html | 3 +- static/website/templates/home.html | 508 +++++++------ static/website/templates/navbar.html | 17 +- .../registration/password_change_done.html | 47 ++ .../registration/password_change_form.html | 49 ++ .../registration/password_reset_complete.html | 41 ++ .../registration/password_reset_confirm.html | 91 +++ .../registration/password_reset_done.html | 41 ++ .../registration/password_reset_form.html | 26 + static/website/templates/submit-cfw.html | 102 +++ static/website/templates/user-register.html | 43 ++ website/forms.py | 205 ++++-- website/migrations/0002_proposal_open_to_share.py | 18 + website/models.py | 31 +- website/urls.py | 43 +- website/views.py | 809 ++++++++++++++++++++- 25 files changed, 1969 insertions(+), 387 deletions(-) create mode 100644 static/website/bootstrap-css/assets/images/favicon.png create mode 100644 static/website/bootstrap-css/images/loader-64x/Preloader_2.gif.gif create mode 100755 static/website/templates/abstract-details.html create mode 100755 static/website/templates/comment-abstract.html create mode 100755 static/website/templates/edit-proposal.html create mode 100755 static/website/templates/registration/password_change_done.html create mode 100755 static/website/templates/registration/password_change_form.html create mode 100755 static/website/templates/registration/password_reset_complete.html create mode 100755 static/website/templates/registration/password_reset_confirm.html create mode 100755 static/website/templates/registration/password_reset_done.html create mode 100755 static/website/templates/registration/password_reset_form.html create mode 100755 static/website/templates/submit-cfw.html create mode 100755 static/website/templates/user-register.html create mode 100644 website/migrations/0002_proposal_open_to_share.py diff --git a/nccps2018/urls.py b/nccps2018/urls.py index b48e7c3..21733fd 100644 --- a/nccps2018/urls.py +++ b/nccps2018/urls.py @@ -1,4 +1,4 @@ -"""nccps2018 URL Configuration +"""Scipy2018 URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/2.1/topics/http/urls/ @@ -14,9 +14,28 @@ Including another URLconf 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ from django.contrib import admin -from django.urls import include, path +from django.urls import include, path, re_path +from django.contrib.auth import views as auth_views + urlpatterns = [ - path('', include('website.urls')), + re_path(r'^', include('website.urls', namespace='website')), + re_path(r'^accounts/', + include(('django.contrib.auth.urls', 'auth'), namespace='auth')), path('admin/', admin.site.urls), -] + + re_path(r'^', include('social.apps.django_app.urls', namespace='social')), + + re_path(r'^forgotpassword/$', auth_views.PasswordResetView.as_view( + template_name='registration/password_reset_form.html'), name="password_reset"), + re_path(r'^password_reset/(?P[0-9A-Za-z]+)-(?P.+)/$', auth_views.PasswordResetConfirmView.as_view( + template_name='registration/password_reset_confirm.html'), name='password_reset_confirm'), + re_path(r'^password_reset/mail_sent/$', auth_views.PasswordResetDoneView.as_view(template_name='registration/password_reset_done.html'), + name='password_reset_done'), + re_path(r'^password_reset/complete/$', auth_views.PasswordResetCompleteView.as_view(template_name='registration/password_reset_complete.html'), + name='password_reset_complete'), + re_path(r'^changepassword/$', auth_views.PasswordChangeView.as_view(template_name='registration/password_change_form.html'), + name='password_change'), + re_path(r'^password_change/done/$', auth_views.PasswordChangeDoneView.as_view(template_name='registration/password_change_done.html'), + name='password_change_done'), +] \ No newline at end of file diff --git a/static/website/bootstrap-css/assets/css/main.css b/static/website/bootstrap-css/assets/css/main.css index 57ac778..1efd34d 100644 --- a/static/website/bootstrap-css/assets/css/main.css +++ b/static/website/bootstrap-css/assets/css/main.css @@ -41,7 +41,7 @@ p { } ul li { - font-weight: 700; + font-weight: 500; margin-bottom: 10px; } @@ -457,13 +457,15 @@ ul li { /* * 6.6 Section: Schedule */ -.schedule-box { - position: relative; - background-color: #000; + .schedule-box { + /*background-color: #000;*/ + color: black; + font-weight: 500; +} +.schedule-box .schedule-header{ color: #fff; - text-align: center; - padding: 50px 0; - margin: 25px 0 0; + background-color: #806600; + font-weight: 600; } .schedule-box::before { content: ''; @@ -472,9 +474,8 @@ ul li { right: 5px; bottom: 5px; left: 5px; - border: 1px solid #fff; + /*border: 1px solid #fff;*/ } - /* * 6.7 Section: Schedule */ diff --git a/static/website/bootstrap-css/assets/images/favicon.png b/static/website/bootstrap-css/assets/images/favicon.png new file mode 100644 index 0000000..193caff Binary files /dev/null and b/static/website/bootstrap-css/assets/images/favicon.png differ diff --git a/static/website/bootstrap-css/custom.css b/static/website/bootstrap-css/custom.css index 7014560..4533ab7 100755 --- a/static/website/bootstrap-css/custom.css +++ b/static/website/bootstrap-css/custom.css @@ -1,6 +1,7 @@ /* Paste this css to your style sheet file or under head tag */ /* This only works with JavaScript, if it's not present, don't show loader */ +{% load static %} .no-js #loader { display: none; } .js #loader { display: block; position: absolute; left: 100px; top: 0; } .se-pre-con { @@ -10,7 +11,7 @@ if it's not present, don't show loader */ width: 100%; height: 100%; z-index: 9999; - background: url(images/loader-64x/Preloader_2.gif) center no-repeat #fff; + background: url({% static 'website/bootstrap-css/images/loader-64x/Preloader_2.gif' %}) center no-repeat #fff; } .btn:focus, .btn:active, button:focus, button:active { diff --git a/static/website/bootstrap-css/images/loader-64x/Preloader_2.gif.gif b/static/website/bootstrap-css/images/loader-64x/Preloader_2.gif.gif new file mode 100644 index 0000000..8b71ca9 Binary files /dev/null and b/static/website/bootstrap-css/images/loader-64x/Preloader_2.gif.gif differ diff --git a/static/website/templates/abstract-details.html b/static/website/templates/abstract-details.html new file mode 100755 index 0000000..07dcfc3 --- /dev/null +++ b/static/website/templates/abstract-details.html @@ -0,0 +1,44 @@ +{% extends "base.html" %} +{% load static %} + {% block content %} +
+
+

+

+

Abstract Details

+
+

+

{{ proposal.user.first_name }} {{ proposal.user.last_name }}

+
+

Title:  {{ proposal.title }}

+

About Me:  {{ proposal.about_me | linebreaks }}

+

Abstract:  {{ proposal.abstract |linebreaks }}

+ {% if proposal.prerequisite %} +

Prerequisite:  {{ proposal.prerequisite |linebreaks }}

+ {% endif%} +

Duration:  {{ proposal.duration }} {% if proposal.proposal_type == "ABSTRACT"%} Mins {% else %}Hours {%endif%}

+ {% if proposal.proposal_type == "ABSTRACT"%} +

Tags:  {{ proposal.tags }}

+ {% else %} +

Level:  {{ proposal.tags }}

+ {% endif %} +

Date Created:  {{ proposal.date_created }}

+ {% if url %} +

Attachment:   + {{filename}} +

+ {% endif %} +

Comments: +


+ {% for comment in comments %} +
+ Comment By: + {{ comment.user.first_name }} {{ comment.user.last_name }} +

{{ comment.comment| linebreaks }}

+
+
+ {% endfor %} +
+
+ {% endblock %} + diff --git a/static/website/templates/cfp.html b/static/website/templates/cfp.html index 704fafb..f8160ac 100755 --- a/static/website/templates/cfp.html +++ b/static/website/templates/cfp.html @@ -9,7 +9,7 @@ {% block content %}
-

+ + + +

+
+

Call for Papers

+
- -
+
+
+

We invite papers on Chemical Process Modelling, Simulation and Optimization. Time duration for oral presentation will be 15 minutes. Accepted papers will be published in conference proceedings. Award will be given to best paper and best poster.

+

Paper submission starts on September 10 2018.

+
+
+
+

- Guidelines for a Proposal + General guidelines for paper submission:

-
    -
  • The project should be an actual implementation rather than just an idea.
  • -
  • Besides implementation, the submission can also be about experiences and usage of Python, Python-based tools and libraries for research or teaching.
  • -
  • Abstract should be of 300 to 700 words describing the topic, including its relevance to scientific computing or the use of Python in education.
  • -
  • All selected proposals must be presented at the conference by atleast one author.
  • +
      +
    • Papers are invited on chemical process, modelling, simulation, and optimization.
    • +
    • Use of open source software such as DWSIM and OpenModelica will be preferred.
    • +
    • Authors must submit the manuscript up to 6 pages of length including tables, figures and references in the required 2-column format as described in the template below.
    • +
    • Submissions will be judged on originality, significance, interest, clarity, relevance, and presentation.
    • +
    • Authors should ensure that their work doesn’t contain plagiarized content and not under copyright elsewhere.
    • +
    • Please download the appropriate file for structure of the paper. We encourage use of LaTeX for creating paper.(Click for LaTeX/ Word template)
-
+

- Guidelines for a Workshop + Suggested Contents of a paper

-
    -
  • There are two parallel tracks, one for beginners and one for advanced users.
  • -
  • The workshops should be hands-on with plenty of exercises for the users.
  • -
  • It is advisable to pick particular problem(s) and orient your workshop around how to solve those using the package you plan to talk about.
  • -
  • Provide us with links to any resources you have already prepared for the workshop.
  • +
      +
    • Selection of a topic
    • +
    • Importance of a topic
    • +
    • Any difficulties while solving with open source software.
    • +
    • The methodology followed to overcome these difficulties(any assumptions, data regression, custom modelling, etc.)
    • +
    • Validation of the results with published papers/experimentation/commercial simulators like CHEMCAD, Aspen Plus, UniSim etc.
    • +
    • Sensitivity studies, adjust, some tricks used for faster calculation etc done to optimize results and reduce simulation time.
diff --git a/static/website/templates/comment-abstract.html b/static/website/templates/comment-abstract.html new file mode 100755 index 0000000..b6dd3a2 --- /dev/null +++ b/static/website/templates/comment-abstract.html @@ -0,0 +1,98 @@ +{% extends "base.html" %} +{% load static %} +{% load widget_tweaks %} +{% block content %} + +
+
+

+

+ {% if proposal.proposal_type == "ABSTRACT"%} +

Abstract Details

+ {% else %} +

Workshop Details

+ {% endif %} +
+

+

{{ proposal.user.first_name }} {{ proposal.user.last_name }}

+

Title:  {{ proposal.title }}

+

About Me:  {{ proposal.about_me |linebreaks }}

+ {% if proposal.proposal_type == "ABSTRACT"%} +

Abstract:  + {% else %} +

Description:  + {% endif %} + {{ proposal.abstract | linebreaks }} +

+ {% if proposal.prerequisite %} +

Prerequisite:  {{ proposal.prerequisite| linebreaks }}

+ {% endif%} +

Duration:  {{ proposal.duration }} {% if proposal.proposal_type == "ABSTRACT"%} Mins {% else %}Hours {%endif%}

+ {% if proposal.proposal_type == "ABSTRACT"%} +

Tags:  {{ proposal.tags }}

+ {% else %} +

Level:  {{ proposal.tags }}

+ {% endif %} + {% if url %} + Attachment:  {{ filename }} + {% endif %} +

Date Created:  {{ proposal.date_created }}

+
+ {% csrf_token %} + Ratings : + + /10   + +
+

Ratings

+ {% for rate in rates %} +
+ {{rate.rating}}/10 + by - {{ rate.user }} +
+ {% endfor %} +
+

Comments

+ {% for comment in comments %} +
+ Comment By: + {{ comment.user.first_name }} {{ comment.user.last_name }} +

{{ comment.comment| linebreaks }}

+ +
+
+ + {% endfor %} +
+ {% csrf_token %} +
+ +
+ +
+
+ {% endblock %} + + diff --git a/static/website/templates/edit-proposal.html b/static/website/templates/edit-proposal.html new file mode 100755 index 0000000..fdcc39b --- /dev/null +++ b/static/website/templates/edit-proposal.html @@ -0,0 +1,35 @@ +{% extends "base.html" %} +{% load static %} +{% load widget_tweaks %} +{% block content %} + +
+
+

+

+ {% if proposal.proposal_type == "ABSTRACT" %} +

Edit Abstract Proposal

+ {% else %} +

Edit Workshop Proposal

+ {% endif %} +
+

+

{{ proposal.user.first_name }} {{ proposal.user.last_name }}

+
+ {% csrf_token %} +
+ {% for field in form %} +

{{ field.label}} + {% if field.field.required %} * {% endif %} + {{ field }} +

+ {{ field.errors }} + {% endfor %} +
+ {% csrf_token %} +
+
+
+
+
+ {% endblock %} diff --git a/static/website/templates/header.html b/static/website/templates/header.html index e13720e..f9d9c53 100644 --- a/static/website/templates/header.html +++ b/static/website/templates/header.html @@ -9,7 +9,7 @@ - + NCCPS 2018 @@ -19,7 +19,6 @@ - - -
@@ -58,28 +32,16 @@
-

November 26
2018

-
-

Lecture Hall Complex,
IIT Bombay

-
-
-

Paper Submission in Progress

-
@@ -89,37 +51,13 @@
-

Speakers

-
- - -
-
@@ -127,17 +65,9 @@

Prof. K P Madhavan

Emeritus Professor, Dept. of Chemical Engineering, IIT Bombay

- -
@@ -158,24 +87,13 @@
-
-

Mr. Alok Pandit

-

Equinox Software and Services Private Limited

- -
@@ -197,37 +114,167 @@
- - - +
@@ -275,6 +322,7 @@
+

+ +
@@ -289,17 +339,142 @@
-

Event Schedule

+

Tentative Schedule

-
-
-
- -
-

TBD

-
+
+

Poster session - 8AM onwards

+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Time +
+
+
+ Program +
+
+
+ 08:00 - 09:00 +
+
+
+ Registration +
+
+
+ 09:00 - 09:30 +
+
+
+ Inauguration +
+
+
+ 09:30 - 10:30 +
+
+
+ Invited talks +
+
+
+ 10:30 - 11:00 +
+
+
+ Tea +
+
+
+ 11:00 - 01:00 +
+
+
+ Oral Presentations +
+
+
+ 01:00 - 02:00 +
+
+
+ Lunch +
+
+
+ 02:00 - 04:00 +
+
+
+ DWSIM/OpenModelica Workshop +
+
+
+ 04:00 - 04:15 +
+
+
+ Tea +
+
+
+ 04:15 - 05:30 +
+
+
+ Panel Discussion, Valedictory +
+
+
@@ -330,86 +505,13 @@
-
- - -
@@ -460,25 +562,19 @@
- - - - + {% endblock %} diff --git a/static/website/templates/navbar.html b/static/website/templates/navbar.html index 41a1106..ce70dcc 100644 --- a/static/website/templates/navbar.html +++ b/static/website/templates/navbar.html @@ -32,28 +32,23 @@
  • About
  • Speakers
  • -
  • CFP
  • +
  • Register
  • +
  • C0C
  • +
  • Schedule
  • Venue
  • Organiser
  • Contact Us
  • -
  • Register
  • - - +
  • cfp
  • + {% endif %}
    - {% endblock %} diff --git a/static/website/templates/registration/password_change_done.html b/static/website/templates/registration/password_change_done.html new file mode 100755 index 0000000..67fd9a6 --- /dev/null +++ b/static/website/templates/registration/password_change_done.html @@ -0,0 +1,47 @@ + +{% load static %} + + + + + + + + + + SciPy India 2017 + + + + + + + + + + {% block header %} +
    +
    +

    SciPy India 2017

    +

    Reset Password

    +
    +
    +{% endblock %} + +{% block content %} +
    +
    +
    + + +

    Your password has been changed successfully.

    +

    Redirecting ...

    +
    +
    +
    +{% endblock %} \ No newline at end of file diff --git a/static/website/templates/registration/password_change_form.html b/static/website/templates/registration/password_change_form.html new file mode 100755 index 0000000..a27c585 --- /dev/null +++ b/static/website/templates/registration/password_change_form.html @@ -0,0 +1,49 @@ + +{% load static %} + + + + + + + + + + SciPy India 2017 + + + + + + + + + + {% block header %} +
    +
    +

    SciPy India 2017

    +

    Reset Password

    +
    +
    +{% endblock %} + +{% block content %} +
    +
    +
    +
    +
    + {% csrf_token %} +
    + + {{ form }} +
    +
    +
    +
    +
    +
    +
    +
    +{% endblock %} diff --git a/static/website/templates/registration/password_reset_complete.html b/static/website/templates/registration/password_reset_complete.html new file mode 100755 index 0000000..b8a6131 --- /dev/null +++ b/static/website/templates/registration/password_reset_complete.html @@ -0,0 +1,41 @@ + +{% load static %} + + + + + + + + + + SciPy India 2017 + + + + + + + + + + {% block header %} +
    +
    +

    SciPy India 2017

    +

    Reset Password

    +
    +
    +{% endblock %} + +{% block content %} +
    +
    +
    +
    +

    Your password has been reset.

    +

    Please Log in with your new password.

    +
    +
    +
    +{% endblock %} diff --git a/static/website/templates/registration/password_reset_confirm.html b/static/website/templates/registration/password_reset_confirm.html new file mode 100755 index 0000000..895e30d --- /dev/null +++ b/static/website/templates/registration/password_reset_confirm.html @@ -0,0 +1,91 @@ +{% load static %} + + + + + + + + + + SciPy India 2017 + + + + + + + + + + {% block header %} +
    +
    +

    SciPy India 2017

    +

    Reset Password

    +
    +
    +{% endblock %} + +{% block content %} +
    +
    +
    + {% if validlink %} +
    +

    Please enter your new password twice.

    +
    +
    +
    + +
    + + + + + + + + + + + + + + + + +
    +
    {{ form.new_password1.errors }} + {{ form.new_password1 }}
    {{ form.new_password2.errors }} + {{ form.new_password2 }}

    +
    +
    + {% else %} +

    The password reset link is invalid, + possibly because it has already been used.
    + Please request a new password reset.


    + {% endif %} +
    +
    +
    + + +{% endblock %} diff --git a/static/website/templates/registration/password_reset_done.html b/static/website/templates/registration/password_reset_done.html new file mode 100755 index 0000000..e161e5e --- /dev/null +++ b/static/website/templates/registration/password_reset_done.html @@ -0,0 +1,41 @@ +{% load static %} + + + + + + + + + + SciPy India 2017 + + + + + + + + +
    + {% block header %} +
    +
    +

    SciPy India 2017

    +

    Reset Password

    +
    +
    +
    +{% endblock %} + + +{% block content %} +
    +
    +
    +
    + If an account exists with this email, you would receive the password reset instructions shortly. Please check your spam folder too.
    +
    +
    +
    + {% endblock %} diff --git a/static/website/templates/registration/password_reset_form.html b/static/website/templates/registration/password_reset_form.html new file mode 100755 index 0000000..b5d900a --- /dev/null +++ b/static/website/templates/registration/password_reset_form.html @@ -0,0 +1,26 @@ +{% extends "base.html" %} +{% load static %} + {% block content %} +
    +
    + +

    Recovery Email

    +
    + Kindly enter your email ID used for registration. The password reset link will be mailed to the same. +

    +
    + {% csrf_token %} + {{ form.email.errors }} +

    {{ form.email }} + +
    +

    + + +
    +
    + +
    +
    +{% endblock %} diff --git a/static/website/templates/submit-cfw.html b/static/website/templates/submit-cfw.html new file mode 100755 index 0000000..efc746b --- /dev/null +++ b/static/website/templates/submit-cfw.html @@ -0,0 +1,102 @@ +{% extends "base.html" %} +{% load static %} +{% load widget_tweaks %} +{% block content %} + +
    +
    +

    +

    +

    Submit Workshop Proposal

    +
    +

    +
    + {% if proposals_w >= 1 %} You have exceeded the workshop proposal submission limit. + You may view your submitted proposals by clicking + + here + {% else %} +

    + Proposal Guidelines +

    + +
      +
    • Please note that there are two parallel tracks, one for beginners and one for advanced users.
    • +
    • Please make sure the workshops are hands-on with plenty of exercises for the users.
    • +
    • It is usually a good idea to pick a particular problem or set of problems and orient your workshop around how to solve those using the package you plan to talk about.
    • +
    • Please provide us with links to any resources you have already prepared for the workshop.
    • +
    • The more detail you provide on your workshop, the easier it will be for us to pick it.
    • +
    • + Provide us with the following sections: +
        +
      • Duration
      • +
      • Track: beginner or advanced
      • +
      • Intended audience
      • +
      • Why should someone attend your workshop? What will they get at the end of it?
      • +
      • Outline of workshop with a reasonable breakup in terms of time.
      • +
      • Possibly provide any material or similar material you plan to use.
      • +
      • A small paragraph about you with an emphasis on your experience in the area and teaching this material. Essentially, why are you well suited to teach this workshop?
      • +
      +
    • +
    +
    +
    + + {% render_field proposal_form.about_me %} +
    +
    + + {% render_field proposal_form.phone %} +
    +
    + + {% render_field proposal_form.title %} +
    +
    + + {% render_field proposal_form.abstract %} + +
    +
    + + {% render_field proposal_form.duration %} +
    +
    + + {% render_field proposal_form.attachment %} +
    + + {% render_field proposal_form.tags %} +
    +
    +
    +
    + + {% render_field proposal_form.open_to_share %} +
    +
    + {% render_field proposal_form.proposal_type %} + {% csrf_token %} +
    + + Back +
    +
    + {% endif %} +
    +
    +{% endblock %} diff --git a/static/website/templates/user-register.html b/static/website/templates/user-register.html new file mode 100755 index 0000000..c5ea301 --- /dev/null +++ b/static/website/templates/user-register.html @@ -0,0 +1,43 @@ +{% extends "base.html" %} +{% load static %} +
    +{% block content %} +
    +
    +
    +

    Register

    +
    + {% if email_registered %} +
    +
    + × +

    Email ID is already registered !

    +
    +

    Have you already logged in using social logins ?

    +

    or

    +

    Click Here if you forgot your username or password

    +
    + {% endif %} + {% if registration_complete %} +

    Your Account is Created Successfully !

    + {% endif %} + +
    + + {% csrf_token %} + {% for field in form %} +

    {{ field.label}} + {% if field.field.required %} * {% endif %} + {{ field }} +

    + {{ field.errors }} + {% endfor %} +
    + + I have an account + +
    + +
    +{% endblock %} diff --git a/website/forms.py b/website/forms.py index 97f9196..8690ff7 100755 --- a/website/forms.py +++ b/website/forms.py @@ -1,11 +1,11 @@ from django import forms -from django.forms import ModelForm +from django.forms import ModelForm, widgets from django.contrib.auth.forms import UserCreationForm from django.contrib.auth.models import User from django.core.validators import MinLengthValidator, MinValueValidator, \ -RegexValidator, URLValidator + RegexValidator, URLValidator from captcha.fields import ReCaptchaField from website.models import Proposal @@ -30,60 +30,63 @@ MY_CHOICES = ( ('Beginner', 'Beginner'), ('Advanced', 'Advanced'), ) -rating=( - ('1','1'), - ('2','2'), - ('3','3'), - ('4','4'), - ('5','5'), - ('6','6'), - ('7','7'), - ('8','8'), - ('9','9'), - ('10','10'), +rating = ( + ('1', '1'), + ('2', '2'), + ('3', '3'), + ('4', '4'), + ('5', '5'), + ('6', '6'), + ('7', '7'), + ('8', '8'), + ('9', '9'), + ('10', '10'), ) +CHOICES = [('1', 'Yes'), + ('0', 'No')] +# modal proposal form for cfp class ProposalForm(forms.ModelForm): - class Meta: - model = Proposal - exclude = ('user', 'email','prerequisite','status','rate') - - about_me = forms.CharField(widget=forms.Textarea(attrs={'class': 'form-control', 'placeholder': 'About Me'}), - required = True, - error_messages = {'required':'About me field required.'}, - ) + required=True, + error_messages={ + 'required': 'About me field required.'}, + ) attachment = forms.FileField(widget=forms.ClearableFileInput(attrs={'multiple': True}), - label = 'Please upload relevant documents (if any)', - required = False,) - phone = forms.CharField(min_length = 10, max_length = 12, widget=forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'Phone'}),required=False, validators = [RegexValidator(regex = '^[0-9-_+.]*$', message='Enter a Valid Phone Number',)], - # error_messages = {'required':'Title field required.'}, - ) + label='Please upload relevant documents (if any)', + required=False,) + phone = forms.CharField(min_length=10, max_length=12, widget=forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'Phone'}), required=False, validators=[RegexValidator(regex='^[0-9-_+.]*$', message='Enter a Valid Phone Number',)], + # error_messages = {'required':'Title field required.'}, + ) title = forms.CharField(widget=forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'Title'}), - required = True, - error_messages = {'required':'Title field required.'}, + required=True, + error_messages={ + 'required': 'Title field required.'}, ) - abstract = forms.CharField(min_length = 300, widget=forms.Textarea(attrs={'class': 'form-control', 'placeholder': 'Abstract'}), - required = True, - label = 'Abstract (Min. 300 char.)', - error_messages = {'required':'Abstract field required.'}, - ) - proposal_type = forms.CharField(widget = forms.HiddenInput(), label = '', initial = 'ABSTRACT', required=False) - - duration = forms.ChoiceField(choices=abs_duration, label = 'Duration (Mins.)') + abstract = forms.CharField(min_length=300, widget=forms.Textarea(attrs={'class': 'form-control', 'placeholder': 'Abstract', 'onkeyup': 'countChar(this)'}), + required=True, + label='Abstract (Min. 300 char.)', + error_messages={ + 'required': 'Abstract field required.'}, + ) + proposal_type = forms.CharField( + widget=forms.HiddenInput(), label='', initial='ABSTRACT', required=False) + + duration = forms.ChoiceField( + choices=abs_duration, label='Duration (Mins.)') tags = forms.CharField(widget=forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'Tags'}), - required = False, - ) - + required=False, + ) + open_to_share = forms.ChoiceField(choices=CHOICES, widget=forms.RadioSelect(), required=True, + label='I am agree to publish my content',) class Meta: model = Proposal - exclude = ('user', 'email','prerequisite','status','rate') - + exclude = ('user', 'email', 'prerequisite', 'status', 'rate') def clean_attachment(self): import os @@ -93,43 +96,50 @@ class ProposalForm(forms.ModelForm): ext = os.path.splitext(attachment.name)[1] valid_extensions = ['.pdf'] if not ext in valid_extensions: - raise forms.ValidationError(u'File not supported! Only .pdf file is accepted') + raise forms.ValidationError( + u'File not supported! Only .pdf file is accepted') if attachment.size > (5*1024*1024): raise forms.ValidationError('File size exceeds 5MB') return attachment + +# modal workshop form for cfw class WorkshopForm(forms.ModelForm): about_me = forms.CharField(widget=forms.Textarea(attrs={'class': 'form-control', 'placeholder': 'About Me'}), - required = True, - error_messages = {'required':'About Me field required.'}, - ) + required=True, + error_messages={ + 'required': 'About Me field required.'}, + ) attachment = forms.FileField(widget=forms.ClearableFileInput(attrs={'multiple': True}), - label = 'Please upload relevant documents (if any)', - required = False,) - phone = forms.CharField(min_length = 10, max_length = 12, widget=forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'Phone'}),required=False, validators = [RegexValidator(regex = '^[0-9-_+.]*$', message='Enter a Valid Phone Number',)], - ) + label='Please upload relevant documents (if any)', + required=False,) + phone = forms.CharField(min_length=10, max_length=12, widget=forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'Phone'}), required=False, validators=[RegexValidator(regex='^[0-9-_+.]*$', message='Enter a Valid Phone Number',)], + ) title = forms.CharField(widget=forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'Title'}), - required = True, - error_messages = {'required':'Title field required.'}, + required=True, + error_messages={ + 'required': 'Title field required.'}, ) - abstract = forms.CharField(min_length = 300 ,widget=forms.Textarea(attrs={'class': 'form-control', 'placeholder': 'Desciption'}), - required = True, - label = 'Description (Min. 300 char.)', - error_messages = {'required':'Abstract field required.'}, - ) + abstract = forms.CharField(min_length=300, widget=forms.Textarea(attrs={'class': 'form-control', 'placeholder': 'Desciption', 'onkeyup': 'countChar(this)'}), + required=True, + label='Description (Min. 300 char.)',) + prerequisite = forms.CharField(widget=forms.Textarea(attrs={'class': 'form-control', 'placeholder': 'Prerequisite'}), - label = 'Prerequisites', - required = False, - ) - proposal_type = forms.CharField(widget = forms.HiddenInput(), label = '', required=False, initial = 'WORKSHOP') + label='Prerequisites', + required=False, + ) + proposal_type = forms.CharField( + widget=forms.HiddenInput(), label='', required=False, initial='WORKSHOP') - duration = forms.ChoiceField(choices=ws_duration, label = 'Duration (Hrs.)') + duration = forms.ChoiceField(choices=ws_duration, label='Duration (Hrs.)') + + tags = forms.ChoiceField(choices=MY_CHOICES, label='Level') + open_to_share = forms.ChoiceField(choices=CHOICES, widget=forms.RadioSelect(), required=True, + label='I am agree to publish my content',) - tags = forms.ChoiceField(choices=MY_CHOICES, label = 'Level') - class Meta: model = Proposal - exclude = ('user', 'email','status','rate') + exclude = ('user', 'email', 'status', 'rate') def clean_attachment(self): import os @@ -137,22 +147,69 @@ class WorkshopForm(forms.ModelForm): attachment = cleaned_data.get('attachment', None) if attachment: ext = os.path.splitext(attachment.name)[1] - valid_extensions = ['.pdf',] + valid_extensions = ['.pdf', ] if not ext in valid_extensions: - raise forms.ValidationError(u'File not supported! Only .pdf file is accepted') + raise forms.ValidationError( + u'File not supported! Only .pdf file is accepted') if attachment.size > (5*1024*1024): raise forms.ValidationError('File size exceeds 5MB') return attachment +class UserRegisterForm(UserCreationForm): + class Meta: + model = User + fields = ('first_name', 'last_name', 'email', 'username', 'password1', + 'password2') + first_name = forms.CharField(widget=forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'First Name'}), + label='First Name' + ) + last_name = forms.CharField(widget=forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'Last Name'}), + label='Last Name' + ) + email = forms.EmailField(widget=forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'Email'}), + required=True, + error_messages={ + 'required': 'Email field required.'}, + label='Email' + ) + username = forms.CharField(widget=forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'Username'}), + required=True, + error_messages={ + 'required': 'Username field required.'}, + label='Username' + ) + password1 = forms.CharField(widget=forms.PasswordInput(attrs={'class': 'form-control', 'placeholder': 'Password'}), + required=True, + error_messages={ + 'required': 'Password field required.'}, + label='Password' + ) + password2 = forms.CharField(widget=forms.PasswordInput(attrs={'class': 'form-control', 'placeholder': 'Confirm Password'}), + required=True, + error_messages={ + 'required': 'Password Confirm field required.'}, + label='Re-enter Password' + ) + + def clean_first_name(self): + return self.cleaned_data["first_name"].title() + + def clean_email(self): + return self.cleaned_data["email"].lower() + + def clean_last_name(self): + return self.cleaned_data["last_name"].title() + + class UserLoginForm(forms.Form): username = forms.CharField( - widget=forms.TextInput(attrs={'class': 'form-inline', 'placeholder': 'Username'}), - label='User Name' - ) + widget=forms.TextInput( + attrs={'class': 'form-inline', 'placeholder': 'Username'}), + label='User Name' + ) password = forms.CharField( - widget=forms.PasswordInput(attrs={'class': 'form-inline', 'placeholder': 'Password'}), - label='Password' - ) - - + widget=forms.PasswordInput( + attrs={'class': 'form-inline', 'placeholder': 'Password'}), + label='Password' + ) \ No newline at end of file diff --git a/website/migrations/0002_proposal_open_to_share.py b/website/migrations/0002_proposal_open_to_share.py new file mode 100644 index 0000000..4d3002e --- /dev/null +++ b/website/migrations/0002_proposal_open_to_share.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1 on 2018-08-28 05:33 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('website', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='proposal', + name='open_to_share', + field=models.CharField(default=1, max_length=2), + ), + ] diff --git a/website/models.py b/website/models.py index 4f9aa68..b73446b 100644 --- a/website/models.py +++ b/website/models.py @@ -5,35 +5,40 @@ from social.apps.django_app.default.models import UserSocialAuth from nccps2018 import settings import os + def get_document_dir(instance, filename): # ename, eext = instance.user.email.split("@") fname, fext = os.path.splitext(filename) - #print "----------------->",instance.user + # print "----------------->",instance.user return '%s/attachment/%s/%s.%s' % (instance.user, instance.proposal_type, fname+'_'+str(instance.user), fext) + class Proposal(models.Model): - user = models.ForeignKey(User,on_delete=models.CASCADE,) + user = models.ForeignKey(User, on_delete=models.CASCADE,) about_me = models.TextField(max_length=500) email = models.CharField(max_length=128) - phone = models.CharField(max_length = 20) + phone = models.CharField(max_length=20) title = models.CharField(max_length=250) abstract = models.TextField(max_length=700) prerequisite = models.CharField(max_length=750) - duration = models.CharField(max_length = 100) + duration = models.CharField(max_length=100) attachment = models.FileField(upload_to=get_document_dir) date_created = models.DateTimeField(auto_now_add=True) date_modified = models.DateTimeField(auto_now=True) - status = models.CharField(max_length = 100, default='Pending', editable=True) - proposal_type = models.CharField(max_length = 100) - tags = models.CharField(max_length = 250) + status = models.CharField(max_length=100, default='Pending', editable=True) + proposal_type = models.CharField(max_length=100) + tags = models.CharField(max_length=250) + open_to_share = models.CharField(max_length=2, default=1) + class Ratings(models.Model): - proposal = models.ForeignKey(Proposal,on_delete=models.CASCADE,) - user = models.ForeignKey(User,on_delete=models.CASCADE,) + proposal = models.ForeignKey(Proposal, on_delete=models.CASCADE,) + user = models.ForeignKey(User, on_delete=models.CASCADE,) rating = models.CharField(max_length=700) - + + class Comments(models.Model): - proposal = models.ForeignKey(Proposal,on_delete=models.CASCADE,) - user = models.ForeignKey(User,on_delete=models.CASCADE,) + proposal = models.ForeignKey(Proposal, on_delete=models.CASCADE,) + user = models.ForeignKey(User, on_delete=models.CASCADE,) comment = models.CharField(max_length=700) - # rate = models.CharField(max_length =100) + # rate = models.CharField(max_length =100) \ No newline at end of file diff --git a/website/urls.py b/website/urls.py index 582f905..8568004 100644 --- a/website/urls.py +++ b/website/urls.py @@ -1,13 +1,42 @@ -from django.urls import path,include +from django.urls import path, include, re_path from . import views +app_name = 'website' urlpatterns = [ - path('', views.index, name='index'), - path('proposal', views.proposal, name='proposal'), + #path('', views.index, name='index'), + re_path(r'^$', views.index, name='index'), + #path('proposal', views.proposal, name='proposal'), #path('login', views.login, name='login'), - path('accounts/', include('django.contrib.auth.urls')), - path('proposal/view', views.view_abstracts, name='view_abstracts'), - path('proposal/submitcfp', views.submitcfp, name='submitcfp'), + #path('accounts/', include('django.contrib.auth.urls')), + #re_path(r'^', include('django.contrib.auth.urls')), + #path('proposal/view', views.view_abstracts, name='view_abstracts'), + #path('proposal/submitcfp', views.submitcfp, name='submitcfp'), #path('accounts/register', views.userregister, name='userregister'), -] + + + re_path(r'^cfp/$', views.cfp, name='cfp'), + re_path(r'^submit-cfp/$', views.submitcfp, name='submitcfp'), + re_path(r'^submit-cfw/$', views.submitcfw, name='submitcfw'), + #url(r'^submit-cfp/$', 'website.views.cfp', name='home'), + #url(r'^submit-cfw/$', 'website.views.home', name='home'), + re_path(r'^accounts/register/$', views.userregister, name='userregister'), + re_path(r'^accounts/login/$', views.cfp, name='cfp'), + re_path(r'^gallery/$', views.gallery, name='gallery'), + # url(r'^view-abstracts/$', 'website.views.view_abstracts', name='view_abstracts'), + re_path(r'^view-abstracts/$', views.view_abstracts, name='view_abstracts'), + re_path(r'^abstract-details/(?P\d+)$', + views.abstract_details, name='abstract_details'), + re_path(r'^edit-proposal/(?P\d+)$', + views.edit_proposal, name='edit_proposal'), + re_path(r'^view-abstracts/status_change/$', + views.status_change, name='status_change'), + re_path(r'^comment-abstract/(?P\d+)$', + views.comment_abstract, name='comment_abstract'), + re_path(r'^comment-abstract/status/(?P\d+)$', + views.status, name='status'), + re_path(r'^comment-abstract/rate/(?P\d+)$', + views.rate_proposal, name='rate_proposal'), + re_path(r'^process-contact-form/(?P\d+)', + views.contact_us, name='contact_us'), +] \ No newline at end of file diff --git a/website/views.py b/website/views.py index 71f57be..f665868 100644 --- a/website/views.py +++ b/website/views.py @@ -2,16 +2,23 @@ from django.http import HttpResponse from django.shortcuts import render -from django.shortcuts import render_to_response +from django.shortcuts import render_to_response, render from django.template import loader from django.template import RequestContext from django.contrib.auth.forms import UserCreationForm -from django.views.decorators.csrf import csrf_exempt +from django.views.decorators.csrf import csrf_exempt, csrf_protect from django.contrib.auth.decorators import login_required from django.contrib.auth.models import User from website.models import Proposal, Comments, Ratings -from website.forms import ProposalForm -#UserRegisterForm, UserLoginForm, WorkshopForm, ContactForm + +from website.forms import ProposalForm, UserRegisterForm, UserLoginForm, WorkshopForm # ,ContactForm +from website.models import Proposal, Comments, Ratings +from social.apps.django_app.default.models import UserSocialAuth +from django.contrib.auth import authenticate, login, logout + +from django.core.mail import EmailMultiAlternatives +import os +from nccps2018.config import * def index(request): @@ -19,20 +26,54 @@ def index(request): template = loader.get_template('index.html') return HttpResponse(template.render(context, request)) +# def proposal(request): +# context = {} +# template = loader.get_template('proposal.html') +# return HttpResponse(template.render(context, request)) + + +@csrf_protect def proposal(request): - context = {} - template = loader.get_template('proposal.html') - return HttpResponse(template.render(context, request)) + if request.method == "POST": + context = {} + username = request.POST.get('username', None) + password = request.POST.get('password', None) + user = authenticate(username=username, password=password) + if user is not None: + login(request, user) + if 'next' in request.GET: + next = request.GET.get('next', None) + return HttpResponseRedirect(next) + proposals = Proposal.objects.filter(user=request.user).count() + context['user'] = user + context['proposals'] = proposals + template = loader.get_template('proposal.html') + return HttpResponse(template.render(context, request)) + else: + context['invalid'] = True + context['form'] = UserLoginForm + context['user'] = user + template = loader.get_template('proposal.html') + return HttpResponse(template.render(context, request)) + else: + form = UserLoginForm() + context = {'request': request, + 'user': request.user, + 'form': form, + } + template = loader.get_template('proposal.html') + return HttpResponse(template.render(context, request)) -## User Register +# User Register +@csrf_protect def userregister(request): context = {} registered_emails = [] users = User.objects.all() for user in users: registered_emails.append(user.email) - if request.user.is_anonymous(): + if request.user.is_anonymous: if request.method == 'POST': form = UserRegisterForm(request.POST) if form.is_valid(): @@ -47,27 +88,34 @@ def userregister(request): form = UserLoginForm() context['form'] = form context['user'] = request.user - return render_to_response('cfp.html', context) + template = loader.get_template('cfp.html') + return HttpResponse(template.render(context, request)) else: context['form'] = form - return render_to_response('user-register.html', context) + template = loader.get_template('user-register.html') + return HttpResponse(template.render(context, request)) else: form = UserRegisterForm() context['form'] = form - return render_to_response('user-register.html', context) + template = loader.get_template('user-register.html') + return HttpResponse(template.render(context, request)) else: context['user'] = request.user - return render_to_response('cfp.html', context) + template = loader.get_template('user-register.html') + return HttpResponse(template.render(context, request)) + +# View Proposal/Abstract + -## View Proposal/Abstract @login_required +@csrf_protect def view_abstracts(request): user = request.user context = {} - count_list =[] + count_list = [] if request.user.is_authenticated: - if user.is_superuser : + if user.is_superuser: proposals = Proposal.objects.all().order_by('status') ratings = Ratings.objects.all() context['ratings'] = ratings @@ -75,18 +123,19 @@ def view_abstracts(request): context['user'] = user return render(request, 'view-proposals.html', context) elif user is not None: - if Proposal.objects.filter(user = user).exists : - proposals = Proposal.objects.filter(user = user).order_by('status') - proposal_list= [pro.proposal_type for pro in proposals] + if Proposal.objects.filter(user=user).exists: + proposals = Proposal.objects.filter( + user=user).order_by('status') + proposal_list = [pro.proposal_type for pro in proposals] if 'WORKSHOP' in proposal_list and 'ABSTRACT' in proposal_list: proposal_type = 'BOTH' elif 'WORKSHOP' in proposal_list and 'ABSTRACT' not in proposal_list: proposal_type = 'WORKSHOP' else: - proposal_type = 'ABSTRACT' + proposal_type = 'ABSTRACT' context['counts'] = count_list - context['proposals'] =proposals + context['proposals'] = proposals context['type'] = proposal_type context['user'] = user return render(request, 'view-proposals.html', context) @@ -95,6 +144,8 @@ def view_abstracts(request): else: return render(request, 'cfp.html', context) + +@csrf_protect def cfp(request): if request.method == "POST": context = {} @@ -106,7 +157,7 @@ def cfp(request): if 'next' in request.GET: next = request.GET.get('next', None) return HttpResponseRedirect(next) - proposals = Proposal.objects.filter(user = request.user).count() + proposals = Proposal.objects.filter(user=request.user).count() context['user'] = user context['proposals'] = proposals return render_to_response('cfp.html', context) @@ -118,12 +169,14 @@ def cfp(request): else: form = UserLoginForm() context = {'request': request, - 'user': request.user, - } + 'user': request.user, + 'form': form, + } template = loader.get_template('cfp.html') return HttpResponse(template.render(context, request)) +@csrf_protect @login_required def submitcfp(request): context = {} @@ -132,7 +185,8 @@ def submitcfp(request): django_user = User.objects.get(username=social_user) context['user'] = django_user - proposals_a = Proposal.objects.filter(user = request.user, proposal_type = 'ABSTRACT').count() + proposals_a = Proposal.objects.filter( + user=request.user, proposal_type='ABSTRACT').count() if request.method == 'POST': form = ProposalForm(request.POST, request.FILES) if form.is_valid(): @@ -141,38 +195,717 @@ def submitcfp(request): data.email = social_user.email data.save() context['proposal_submit'] = True - sender_name = "SciPy India 2017" + sender_name = "SciPy India 2018" sender_email = TO_EMAIL - subject = "SciPy India 2017 – Talk Proposal Submission Acknowledgment" + subject = "SciPy India 2018 – Talk Proposal Submission Acknowledgment" to = (social_user.email, TO_EMAIL) message = """ Dear {0},

    - Thank you for showing interest & submitting a talk proposal at SciPy India 2017 conference for the talk titled “{1}”. Reviewal of the proposals will start once the CFP closes. + Thank you for showing interest & submitting a talk proposal at SciPy India 2018 conference for the talk titled “{1}”. Reviewal of the proposals will start once the CFP closes.

    You will be notified regarding comments/selection/rejection of your talk via email. Visit this {2} link to view status of your submission. -
    Thank You !

    Regards,
    SciPy India 2017,
    FOSSEE - IIT Bombay. +
    Thank You !

    Regards,
    SciPy India 2018,
    FOSSEE - IIT Bombay. """.format( - social_user.first_name, - request.POST.get('title', None), - 'http://scipy.in/2017/view-abstracts/', ) + social_user.first_name, + request.POST.get('title', None), + 'http://scipy.in/2018/view-abstracts/',) email = EmailMultiAlternatives( - subject,'', - sender_email, to, - headers={"Content-type":"text/html;charset=iso-8859-1"} + subject, '', + sender_email, to, + headers={"Content-type": "text/html;charset=iso-8859-1"} ) email.attach_alternative(message, "text/html") email.send(fail_silently=True) return render_to_response('cfp.html', context) else: - context['proposal_form'] = form + context['proposal_form'] = form context['proposals_a'] = proposals_a template = loader.get_template('submit-cfp.html') return HttpResponse(template.render(context, request)) else: form = ProposalForm() - context['proposals_a'] = proposals_a - return render(request, 'submit-cfp.html', {'form': form}) + context['proposals_a'] = proposals_a + return render(request, 'submit-cfp.html', {'proposal_form': form}) else: context['login_required'] = True return render_to_response('cfp.html', context) + +@csrf_protect +@login_required +def submitcfw(request): + context = {} + if request.user.is_authenticated: + social_user = request.user + # context.update(csrf(request)) + django_user = User.objects.get(username=social_user) + context['user'] = django_user + proposals_w = Proposal.objects.filter( + user=request.user, proposal_type='WORKSHOP').count() + if request.method == 'POST': + form = WorkshopForm(request.POST, request.FILES) + if form.is_valid(): + data = form.save(commit=False) + data.user = django_user + data.email = social_user.email + data.save() + context['proposal_submit'] = True + sender_name = "SciPy India 2018" + sender_email = TO_EMAIL + subject = "SciPy India 2018 – Workshop Proposal Submission Acknowledgment" + to = (social_user.email, TO_EMAIL) + message = """ + Dear {0},

    + Thank you for showing interest & submitting a workshop proposal at SciPy India 2018 conference for the workshop titled “{1}”. Reviewal of the proposals will start once the CFP closes. +

    You will be notified regarding comments/selection/rejection of your workshop via email. + Visit this {2} link to view status of your submission. +
    Thank You !

    Regards,
    SciPy India 2018,
    FOSSEE - IIT Bombay. + """.format( + social_user.first_name, + request.POST.get('title', None), + 'http://scipy.in/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) + return render_to_response('cfp.html', context) + else: + context['proposal_form'] = form + context['proposals_w'] = proposals_w + template = loader.get_template('submit-cfw.html') + return HttpResponse(template.render(context, request)) + + else: + form = WorkshopForm() + context['proposal_form'] = form + context['proposals_w'] = proposals_w + template = loader.get_template('submit-cfw.html') + return HttpResponse(template.render(context, request)) + else: + context['login_required'] = True + template = loader.get_template('cfp.html') + return HttpResponse(template.render(context, request)) + + +@csrf_exempt +def gallery(request): + return render(request, 'gallery.html') + + +@login_required +def edit_proposal(request, proposal_id=None): + user = request.user + context = {} + if user.is_authenticated: + try: + proposal = Proposal.objects.get(id=proposal_id) + if proposal.status == 'Edit': + if proposal.proposal_type == 'ABSTRACT': + form = ProposalForm(instance=proposal) + else: + form = WorkshopForm(instance=proposal) + else: + return render(request, 'cfp.html') + if request.method == 'POST': + if proposal.status == 'Edit': + if proposal.proposal_type == 'ABSTRACT': + form = ProposalForm( + request.POST, request.FILES, instance=proposal) + else: + form = WorkshopForm( + request.POST, request.FILES, instance=proposal) + else: + return render(request, 'cfp.html') + if form.is_valid(): + data = form.save(commit=False) + data.user = user + proposal.status = 'Resubmitted' + data.save() + context.update(csrf(request)) + proposals = Proposal.objects.filter( + user=user).order_by('status') + context['proposals'] = proposals + return render(request, 'view-proposals.html', context) + else: + context['user'] = user + context['form'] = form + context['proposal'] = proposal + return render(request, 'edit-proposal.html', context) + context['user'] = user + context['form'] = form + context['proposal'] = proposal + except: + render(request, 'cfp.html') + return render(request, 'edit-proposal.html', context) + + +@login_required +def abstract_details(request, proposal_id=None): + user = request.user + context = {} + if user.is_authenticated: + if user.is_superuser: + proposals = Proposal.objects.all() + context['proposals'] = proposals + context['user'] = user + return render(request, 'cfp.html', context) + elif user is not None: + try: + proposal = Proposal.objects.get(id=proposal_id) + if proposal.user == user: + try: + url = '/2018'+str(proposal.attachment.url) + context['url'] = url + except: + pass + comments = Comments.objects.filter(proposal=proposal) + context['proposal'] = proposal + context['user'] = user + context['comments'] = comments + path, filename = os.path.split(str(proposal.attachment)) + context['filename'] = filename + return render(request, 'abstract-details.html', context) + else: + return render(request, 'cfp.html', context) + except: + return render(request, 'cfp.html', context) + else: + return render(request, 'cfp.html', context) + else: + return render(request, 'cfp.html', context) + + +@login_required +def rate_proposal(request, proposal_id=None): + user = request.user + context = {} + if user.is_authenticated: + proposal = Proposal.objects.get(id=proposal_id) + if request.method == 'POST': + ratings = Ratings.objects.filter( + proposal_id=proposal_id, user_id=user.id) + if ratings: + for rate in ratings: + rate.rating = request.POST.get('rating', None) + rate.save() + else: + newrate = Ratings() + newrate.rating = request.POST.get('rating', None) + newrate.user = user + newrate.proposal = proposal + newrate.save() + rates = Ratings.objects.filter(proposal_id=proposal_id) + comments = Comments.objects.filter(proposal=proposal) + context['comments'] = comments + context['proposal'] = proposal + context['rates'] = rates + # context.update(csrf(request)) + return render(request, 'comment-abstract.html', context) + else: + rates = Ratings.objects.filter(proposal=proposal) + comments = Comments.objects.filter(proposal=proposal) + context['comments'] = comments + context['proposal'] = proposal + context['rates'] = rates + # context.update(csrf(request)) + return render(request, 'comment-abstract.html', context) + else: + return render(request, 'comment-abstract.html', context) + + +@login_required +def comment_abstract(request, proposal_id=None): + user = request.user + context = {} + if user.is_authenticated: + if user.is_superuser: + try: + proposal = Proposal.objects.get(id=proposal_id) + try: + url = '/2018'+str(proposal.attachment.url) + context['url'] = url + except: + pass + if request.method == 'POST': + comment = Comments() + comment.comment = request.POST.get('comment', None) + comment.user = user + comment.proposal = proposal + comment.save() + comments = Comments.objects.filter(proposal=proposal) + sender_name = "SciPy India 2018" + sender_email = TO_EMAIL + to = (proposal.user.email, TO_EMAIL) + if proposal.proposal_type == 'ABSTRACT': + subject = "SciPy India 2018 - Comment on Your talk Proposal" + message = """ + Dear {0},

    + There is a comment posted on your proposal for the talk titled {1}.
    + Once we receive your response, you will be notified regarding further comments/acceptance/ rejection of your talk/workshop via email. + Visit this link {2} to view comments on your submission.

    + Thank You !

    Regards,
    SciPy India 2018,
    FOSSEE - IIT Bombay. + """.format( + proposal.user.first_name, + proposal.title, + 'http://scipy.in/2018/abstract-details/' + + str(proposal.id), + ) + elif proposal.proposal_type == 'WORKSHOP': + subject = "SciPy India 2018 - Comment on Your Workshop Proposal" + message = """ + Dear {0},

    + There is a comment posted on your proposal for the workshop titled {1}.
    + Once we receive your response, you will be notified regarding further comments/acceptance/ rejection of your talk/workshop via email. + Visit this {2} link to view comments on your submission.

    + Thank You !

    Regards,
    SciPy India 2018,
    FOSSEE - IIT Bombay. + """.format( + proposal.user.first_name, + proposal.title, + 'http://scipy.in/2018/abstract-details/' + + str(proposal.id), + ) + 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) + proposal.status = "Commented" + proposal.save() + rates = Ratings.objects.filter(proposal=proposal) + context['rates'] = rates + context['proposal'] = proposal + context['comments'] = comments + path, filename = os.path.split(str(proposal.attachment)) + context['filename'] = filename + # context.update(csrf(request)) + template = loader.get_template('comment-abstract.html') + return HttpResponse(template.render(context, request)) + else: + comments = Comments.objects.filter(proposal=proposal) + rates = Ratings.objects.filter(proposal=proposal) + context['rates'] = rates + context['proposal'] = proposal + context['comments'] = comments + path, filename = os.path.split(str(proposal.attachment)) + context['filename'] = filename + # context.update(csrf(request)) + template = loader.get_template('comment-abstract.html') + return HttpResponse(template.render(context, request)) + except: + template = loader.get_template('cfp.html') + return HttpResponse(template.render(context, request)) + else: + template = loader.get_template('cfp.html') + return HttpResponse(template.render(context, request)) + else: + template = loader.get_template('cfp.html') + return HttpResponse(template.render(context, request)) + + +@login_required +def status(request, proposal_id=None): + user = request.user + context = {} + if user.is_authenticated: + if user.is_superuser: + proposal = Proposal.objects.get(id=proposal_id) + if 'accept' in request.POST: + proposal.status = "Accepted" + proposal.save() + sender_name = "SciPy India 2018" + sender_email = TO_EMAIL + to = (proposal.user.email, TO_EMAIL) + if proposal.proposal_type == 'ABSTRACT': + subject = "SciPy India 2018 - Talk Proposal Accepted" + message = """Dear """+proposal.user.first_name+""", + Thank you for your excellent submissions! This year we received many really good submissions. Due 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. 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,\nSciPy India 2018,\nFOSSEE - IIT Bombay""" + elif proposal.proposal_type == 'WORKSHOP': + subject = "SciPy India 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,\nSciPy India 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() + sender_name = "SciPy India 2018" + sender_email = TO_EMAIL + to = (proposal.user.email, TO_EMAIL, ) + if proposal.proposal_type == 'ABSTRACT': + subject = "SciPy India 2018 - Talk Proposal Rejected" + message = """Dear """+proposal.user.first_name+""", + Thank you for your submission to the conference. Unfortunately, due to the large number of excellent talks that were submitted, your talk 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,\nSciPy India 2018,\nFOSSEE - IIT Bombay""" + # 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. + + # Having said that, we do encourage you to attend the conference. We hope you do change your ways and be honest in the future. + + # \n\nRegards,\n\n + # SciPy India Program chairs""" + + elif proposal.proposal_type == 'WORKSHOP': + subject = "SciPy India 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,\nSciPy India 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 SciPy toolstack the application was not entirely in the domain of the attendees we typically have at SciPy. 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\nSciPy India 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 = "SciPy India 2018" + sender_email = TO_EMAIL + if proposal.proposal_type == 'ABSTRACT': + subject = "SciPy India 2018 - Talk Proposal Resumbmission" + message = """ + Dear {0},

    + 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, + 'https://scipy.in/2018/view-abstracts/' + ) + elif proposal.proposal_type == 'WORKSHOP': + subject = "SciPy India 2018 - Workshop Proposal Resubmission" + message = """ + Thank you for showing interest & submitting a workshop proposal at SciPy India 2018 conference for the workshop titled "{1}". You are requested to submit this talk proposal once again.
    + You will be notified regarding comments/selection/rejection of your workshop via email. + Visit this {2} link to view comments on your submission.

    + Thank You !

    Regards,
    SciPy India 2018,
    FOSSEE - IIT Bombay. + """.format( + proposal.user.first_name, + proposal.title, + 'https://scipy.in/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) + proposal.status = "Edit" + proposal.save() + # context.update(csrf(request)) + else: + return render(request, 'cfp.html') + else: + return render(request, 'cfp.html') + proposals = Proposal.objects.all().order_by('status') + context['proposals'] = proposals + context['user'] = user + return render(request, 'view-proposals.html', context) + + +@login_required +def status_change(request): + user = request.user + context = {} + if user.is_authenticated: + if user.is_superuser: + if 'delete' in request.POST: + delete_proposal = request.POST.getlist('delete_proposal') + for proposal_id in delete_proposal: + proposal = Proposal.objects.get(id=proposal_id) + proposal.delete() + # context.update(csrf(request)) + proposals = Proposal.objects.all() + context['proposals'] = proposals + context['user'] = user + template = loader.get_template('view-proposals.html') + return HttpResponse(template.render(context, request)) + elif 'dump' in request.POST: + delete_proposal = request.POST.getlist('delete_proposal') + blank = False + if delete_proposal == []: + blank = True + try: + if blank == False: + response = HttpResponse(content_type='text/csv') + response['Content-Disposition'] = 'attachment; filename="Proposals.csv"' + writer = csv.writer(response) + header = [ + 'name', + 'username', + 'email', + 'about_me', + 'phone', + 'title', + 'abstract', + 'prerequisite', + 'duration', + 'attachment', + 'date_created', + 'status', + 'proposal_type', + 'tags', + ] + writer.writerow(header) + for proposal_id in delete_proposal: + proposal = Proposal.objects.get(id=proposal_id) + row = [ + '{0} {1}'.format( + proposal.user.first_name, proposal.user.last_name), + proposal.user.username, + proposal.user.email, + proposal.about_me, + proposal.phone, + proposal.title, + proposal.abstract, + proposal.prerequisite, + proposal.duration, + proposal.attachment, + proposal.date_created, + proposal.status, + proposal.proposal_type, + proposal.tags, + ] + writer.writerow(row) + return response + else: + proposals = Proposal.objects.all() + context['proposals'] = proposals + context['user'] = user + template = loader.get_template('view-proposals.html') + return HttpResponse(template.render(context, request)) + except: + proposals = Proposal.objects.all() + context['proposals'] = proposals + context['user'] = user + template = loader.get_template('view-proposals.html') + return HttpResponse(template.render(context, request)) + elif 'accept' in request.POST: + delete_proposal = request.POST.getlist('delete_proposal') + for proposal_id in delete_proposal: + proposal = Proposal.objects.get(id=proposal_id) + proposal.status = "Accepted" + proposal.save() + sender_name = "SciPy India 2018" + sender_email = TO_EMAIL + to = (proposal.user.email, TO_EMAIL) + if proposal.proposal_type == 'ABSTRACT': + subject = "SciPy India 2018 - Talk Proposal Accepted" + message = """Dear """+proposal.user.first_name+""", + Thank you for your excellent submissions! This year we received many really good submissions. Due 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. 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,\nSciPy India 2018,\nFOSSEE - IIT Bombay""" + elif proposal.proposal_type == 'WORKSHOP': + subject = "SciPy India 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 confirm your participation and do provide detailed instructions for the participants (and the organizers if they need to do something for you) by replying to this email. These instructions will be made available on the conference website. 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 on the previous day for installation help. Let us know about this. Also, do not waste too much time on installation during your workshop. + +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. +\n\nThank You ! \n\nRegards,\nSciPy India 2018,\nFOSSEE - IIT Bombay""" + #send_mail(subject, message, sender_email, to) + # context.update(csrf(request)) + proposals = Proposal.objects.all() + context['proposals'] = proposals + context['user'] = user + template = loader.get_template('view-proposals.html') + return HttpResponse(template.render(context, request)) + elif 'reject' in request.POST: + delete_proposal = request.POST.getlist('delete_proposal') + for proposal_id in delete_proposal: + proposal = Proposal.objects.get(id=proposal_id) + proposal.status = "Rejected" + proposal.save() + sender_name = "SciPy India 2018" + sender_email = TO_EMAIL + to = (proposal.user.email, TO_EMAIL) + if proposal.proposal_type == 'ABSTRACT': + subject = "SciPy India 2018 - Talk Proposal Rejected" + message = """Dear """+proposal.user.first_name+""", + Thank you for your submission to the conference. Unfortunately, due to the large number of excellent talks that were submitted, your talk 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,\nSciPy India 2018,\nFOSSEE - IIT Bombay""" + # 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. + + # Having said that, we do encourage you to attend the conference. We hope you do change your ways and be honest in the future. + + # \n\nRegards,\n\nSciPy India Program chairs""" + elif proposal.proposal_type == 'WORKSHOP': + subject = "SciPy India 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,\nSciPy India 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 SciPy toolstack the application was not entirely in the domain of the attendees we typically have at SciPy. 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\nSciPy India Program chairs""" + #send_mail(subject, message, sender_email, to) + # context.update(csrf(request)) + proposals = Proposal.objects.all() + context['proposals'] = proposals + context['user'] = user + template = loader.get_template('view-proposals.html') + return HttpResponse(template.render(context, request)) + elif 'resubmit' in request.POST: + delete_proposal = request.POST.getlist('delete_proposal') + for proposal_id in delete_proposal: + proposal = Proposal.objects.get(id=proposal_id) + sender_name = "SciPy India 2018" + sender_email = TO_EMAIL + to = (proposal.user.email, TO_EMAIL) + if proposal.proposal_type == 'ABSTRACT': + subject = "SciPy India 2018 - Talk Proposal Acceptance" + message = """ + Dear {0},

    + Thank you for your excellent submissions! Your talk has been accepted! This year, we have 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. +Thank You !

    Regards,
    SciPy India 2018,
    FOSSEE - IIT Bombay. + """.format( + proposal.user.first_name, + proposal.title, + 'https://scipy.in/2018/view-abstracts/' + ) + elif proposal.proposal_type == 'WORKSHOP': + subject = "SciPy India 2018 - Workshop Proposal Resubmission" + message = """ + Thank you for showing interest & submitting a workshop proposal at SciPy India 2018 conference for the workshop titled "{1}". You are requested to submit this talk proposal once again.
    + You will be notified regarding comments/selection/rejection of your workshop via email. + Visit this {2} link to view comments on your submission.

    + Thank You !

    Regards,
    SciPy India 2018,
    FOSSEE - IIT Bombay. + """.format( + proposal.user.first_name, + proposal.title, + 'https://scipy.in/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) + proposal.status = "Edit" + proposal.save() + # context.update(csrf(request)) + proposals = Proposal.objects.all() + context['proposals'] = proposals + context['user'] = user + template = loader.get_template('view-proposals.html') + return HttpResponse(template.render(context, request)) + else: + proposals = Proposal.objects.all() + context['proposals'] = proposals + context['user'] = user + template = loader.get_template('view-proposals.html') + return HttpResponse(template.render(context, request)) + else: + template = loader.get_template('cfp.html') + return HttpResponse(template.render(context, request)) + else: + template = loader.get_template('view-proposals.html') + return HttpResponse(template.render(context, request)) + + +@login_required +def edit_proposal(request, proposal_id=None): + user = request.user + context = {} + if user.is_authenticated: + try: + proposal = Proposal.objects.get(id=proposal_id) + if proposal.status == 'Edit': + if proposal.proposal_type == 'ABSTRACT': + form = ProposalForm(instance=proposal) + else: + form = WorkshopForm(instance=proposal) + else: + return render(request, 'cfp.html') + if request.method == 'POST': + if proposal.status == 'Edit': + if proposal.proposal_type == 'ABSTRACT': + form = ProposalForm( + request.POST, request.FILES, instance=proposal) + else: + form = WorkshopForm( + request.POST, request.FILES, instance=proposal) + else: + return render(request, 'cfp.html') + if form.is_valid(): + data = form.save(commit=False) + data.user = user + proposal.status = 'Resubmitted' + data.save() + context.update(csrf(request)) + proposals = Proposal.objects.filter( + user=user).order_by('status') + context['proposals'] = proposals + return render(request, 'view-abstracts.html', context) + else: + context['user'] = user + context['form'] = form + context['proposal'] = proposal + return render(request, 'edit-proposal.html', context) + context['user'] = user + context['form'] = form + context['proposal'] = proposal + except: + template = loader.get_template('cfp.html') + return HttpResponse(template.render(context, request)) + template = loader.get_template('edit-proposal.html') + return HttpResponse(template.render(context, request)) + + +@csrf_exempt +def contact_us(request, next_url): + pass + # user = request.user + # context = {} + # if request.method == "POST": + # form = ContactForm(request.POST) + # sender_name = request.POST['name'] + # sender_email = request.POST['email'] + # to = ('scipy@fossee.in',) + # subject = "Query from - "+sender_name + # message = request.POST['message'] + # try: + # send_mail(subject, message, sender_email, to) + # context['mailsent'] = True + # context['user'] = user + # except: + # context['mailfailed'] = True + # context['user'] = user + # return redirect(next_url,context) \ No newline at end of file -- cgit