summaryrefslogtreecommitdiff
path: root/static/website/templates/cfp.html
blob: 7c85dbb256deacfd335a9da400c77a20b08ea309 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{% extends "base.html" %}
{% load static %}
{% block content %}
        <section id="cfp" class="section cfp">
            <div class="container">
                <p>
                    <center>
            {% if user and not user.is_anonymous %}
                        <h2>Submit Proposal</h2>
            {% else %}
                        <h2>Login</h2>
            {% endif %}
                    </center>
                </p>
         {% if registration_complete %}
                <center>
                    <p>Thank You for your registration. You can now log in by clicking
                        <a href="{% url 'website:cfp' %}">here!</a>
                    </p>
                    <br/>
                    <br/>
                </center>
         {% endif %}
         {% if user and not user.is_anonymous and not login_required %}
        {% if proposal_submit %}
                <center>
                    <table>
                        <tr>
                            <td>
                                <p>Thank You for your submission. Your proposal has been saved successfully and is under review. You can check the status of submission
                                    <a href="{% url 'website:view_abstracts' %}">here!
                        </a>
                                </p>
                            </td>
                        </tr>
                    </table>
                </center>
         {% endif %}
                <p>We invite you to submit proposals for talks or workshops to be presented at SciPy 2019. The time duration for talks is 15 minutes and for workshops is 2 to 4 hours. There will be two parallel tracks for the workshops this year.  One track is meant for beginners and the other is for advanced users.
         </p>
                <span>
                    <h2>
                        <u>Important Dates</u>
                    </h2>
                </span>
                <ul>
                    <li>Call for proposals opens: <b>{{ cfp_dates.start_date| date:"d F Y" }}</b>
                    </li>
                    <li>Last date for submission of proposals: <b>{{ cfp_dates.end_date|date:"d F Y" }}</b>
                    </li>
                    <!-- <li>Announcement of selected proposals: <b>15<sup>th</sup> Nov. 2019</b>
                    </li> -->
                </ul>
                <br/>
         {% if user.is_superuser %}
                <center>
                    <a href="{% url 'website:view_abstracts' %}" class="btn btn-info">View Proposals</a>
                    <!-- <a href="{% url 'website:submitcfp' %}" class ="btn btn-info" role="button"> Submit paper  </a>
                    <a href="{% url 'website:submitcfw' %}" class ="btn btn-info" role="button">Submit workshop </a> -->
                </center>
         {% else %}
                <center>
                    <a href="{% url 'website:view_abstracts' %}" class="btn btn-info">View Proposals</a>
                   <!--  <a href="{% url 'website:submitcfp' %}" class ="btn btn-info" role="button"> Submit paper  </a>
                    <a href="{% url 'website:submitcfw' %}" class ="btn btn-info" role="button">Submit workshop </a> -->
                </center>
                {% endif %}
         {% else %}
                <hr>
                    <div class="row">
                        <div class="col-sm-4">
                            <span>
                                <h2>
                                    <u>Login</u>
                                </h2>
                            </span>
                            <p>Login/Register to Submit a Proposal</p>
               {% if invalid %}
                            <p style="color:red; font-size:15px;">* Invalid Username/Password</p>
               {% endif %}
                            <form action="" method="POST">
                            {% csrf_token %}
                  {{ form.as_p }}
                                <button class="button special" name ="login" type="submit">Login</button>
                                <br/>
                                <br/>
                                <a style="padding-right : 20px;" href="{% url 'website:user_register' %}" class="btn btn btn-primary">Create an Account
                                </a>
                                <br><br>
                                    <a href="/2019/forgotpassword/" class="btn btn-primary">Forgot Password?</a>
                                </form>
                            </p>
                            <br>
                            </div>
                            <div class="col-sm-4" align="justify">
                                <br>
                                    <h4 class="panel-title">
                        Guidelines for a Proposal
                        </h4>
                                    <ul style="margin-left: -6%;">
                                        <li>Maximum of two authors are accepted for a proposal. Kindly make sure that the details are filled in correctly as these will reflect in the certificate.</li>
                    <li>The project you are willing to present should be an actual implementation rather than just an idea.</li>
                    <li>Submissions need not necessarily be about an implementation, they could also be about experiences and usage of Python and Python-based tools and libraries for research or teaching.</li>
                    <li>Abstract should be of 300 to 700 words describing the topic, including its relevance to scientific computing or the use of Python in education.</li>
                    <li>Proposals with an aim to promote a commercial product or service will be rejected.</li>
                    <li>In your abstract mention the various tools/libraries used for development.</li>
                    <li>Notification for selection/rejection of your proposal will be given through email.</li>
                    <li>All selected proposals must be presented at the conference by at least one author.</li>
                                    </ul>
                                </div>
                                <div class="col-sm-4" align="justify">
                                    <br>
                                        <h4 class="panel-title">
                           Guidelines for a Workshop
                        </h4>
                                        <ul style="margin-left: -6%;">
                                            <li>There are two parallel tracks, one for beginners and one for advanced users.</li>
                                            <li>The workshops should be hands-on with plenty of exercises for the users.</li>
                                            <li>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.</li>
                                            <li>Provide us with links to any resources you have already prepared for the workshop.</li>
                                        </ul>
                                    </div>
                                </div>
                            </div>
         {% endif %}
                        </section>
      {% endblock %}