summaryrefslogtreecommitdiff
path: root/static/website/templates/submit-cfp.html
diff options
context:
space:
mode:
authorPrashant S2018-08-16 14:54:58 +0530
committerGitHub2018-08-16 14:54:58 +0530
commit5fc9c374d7139d8364519a9f28f07be645d62eeb (patch)
tree7d48d9bbd7d72e4ddf2607fb987dc2cdee5a5419 /static/website/templates/submit-cfp.html
parent9674af451d6ede8fc3a3ee1527eb8ac2f1a61cb2 (diff)
parentae12447a47f7298bb411a1d4191e8d3dcf975e01 (diff)
downloadSciPy2018-5fc9c374d7139d8364519a9f28f07be645d62eeb.tar.gz
SciPy2018-5fc9c374d7139d8364519a9f28f07be645d62eeb.tar.bz2
SciPy2018-5fc9c374d7139d8364519a9f28f07be645d62eeb.zip
Merge pull request #7 from prashantsinalkar/master
added submit cfp
Diffstat (limited to 'static/website/templates/submit-cfp.html')
-rwxr-xr-xstatic/website/templates/submit-cfp.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/static/website/templates/submit-cfp.html b/static/website/templates/submit-cfp.html
new file mode 100755
index 0000000..b3aa2ee
--- /dev/null
+++ b/static/website/templates/submit-cfp.html
@@ -0,0 +1,41 @@
+{% extends "base.html" %}
+{% load static %}
+<div class="se-pre-con"></div>
+{% block content %}
+<section id="view_proposal" class="section view_proposal">
+ <div class="container">
+ {% if proposals_a >= 1 %} You have exceeded the abstract submission limit. You may view your submitted proposals by clicking <a href="{{ SITE_URL}}/proposal/view" class="btn btn-info" role="button"> here</a>
+ <!-- <h2>{{ user.get_full_name|default:user.username }} </h2> -->
+ {% else %} <br>
+ <center>
+ <h1>Submit Proposal</h1>
+ </center>
+ <hr>
+ <h2><u>Proposal Guidelines</u></h2>
+ <ul>
+ <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>
+ <form action="" method=POST enctype="multipart/form-data">
+ <!-- <a style="color:red; ">{{ proposal_form.errors }} -->
+ <div class="row1">
+ {% for field in proposal_form %}
+ <p>{{ field.label}} {% if field.field.required %} <span style="color:red;">*</span> {% endif %} {{ field }}
+ </p>
+ <a style="color:red; ">{{ field.errors }}</a> {% endfor %}
+ </div>
+ {% csrf_token %}
+ <center>
+ <button class="btn btn-info" type="submit">Submit</button>
+ <a href="{{ SITE_URL}}/proposal" class="btn btn-info" role="button">Back</a>
+ </center>
+ </form>
+ {% endif %}
+ </div>
+</section>
+{% endblock %}