diff options
author | prashantsinalkar | 2018-08-23 10:20:11 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-08-23 10:20:11 +0530 |
commit | a5f9221b03bdc8fa1152b161db5c60dc4f6cc896 (patch) | |
tree | 4c9dd75a1b0b833e3092571e546b4d5fb4568e13 /static/website | |
parent | 17e8d8b6e6aff4eb6181e87be43d756e06e1fef6 (diff) | |
download | SciPy2018-a5f9221b03bdc8fa1152b161db5c60dc4f6cc896.tar.gz SciPy2018-a5f9221b03bdc8fa1152b161db5c60dc4f6cc896.tar.bz2 SciPy2018-a5f9221b03bdc8fa1152b161db5c60dc4f6cc896.zip |
added cfp form
Diffstat (limited to 'static/website')
-rwxr-xr-x | static/website/templates/submit-cfp.html | 115 |
1 files changed, 85 insertions, 30 deletions
diff --git a/static/website/templates/submit-cfp.html b/static/website/templates/submit-cfp.html index b3aa2ee..5354f4e 100755 --- a/static/website/templates/submit-cfp.html +++ b/static/website/templates/submit-cfp.html @@ -1,41 +1,96 @@ {% extends "base.html" %} + +{% load widget_tweaks %} {% 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> + {% 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 %} + {% else %} + <br> <center> - <button class="btn btn-info" type="submit">Submit</button> - <a href="{{ SITE_URL}}/proposal" class="btn btn-info" role="button">Back</a> + <h1>Submit Proposal</h1> </center> - </form> + <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> + <div class="form-group"> + <label for="about_me">About me + <span style="color:red;">*</span>: + </label> + {% render_field proposal_form.about_me %} + </div> + <div class="form-group"> + <label for="phone">Phone + <span style="color:red;">*</span>: + </label> + {% render_field proposal_form.phone %} + </div> + <div class="form-group"> + <label for="title">Title + <span style="color:red;">*</span>: + </label> + {% render_field proposal_form.title %} + </div> + <div class="form-group"> + <label for="abstract">Abstract (Min. 300 char.) + + <span style="color:red;">*</span>: + + </label> + {% render_field proposal_form.abstract %} + <label>Charater count: + <div id="charNum"></div> + </label> + </div> + <div class="form-group"> + <label for="duration">Duration (Mins.) + <span style="color:red;">*</span>: + </label> + {% render_field proposal_form.duration %} + + </div> + <div class="form-group"> + <label for="attachment">Attachments:</label> + {% render_field proposal_form.attachment %} + </div> + <div class="form-group"> + <label for="tags">Tags:</label> + {% render_field proposal_form.tags %} + </div> + <div class="form-inline"> + <div class="checkbox"> + <label for="open_to_share">I agree to publish my resources of talk/presentation on this website + <span style="color:red;">*</span>: + </label> + {% render_field proposal_form.open_to_share %} + </div> + </div> + {% render_field proposal_form.proposal_type %} + {% csrf_token %} + <center> + <button id="subbtn" class="btn btn-info" type="submit" >Submit</button> + <a href="{% url 'website:view_abstracts' %}" class="btn btn-info" role="button">Back</a> + </center> + </form> {% endif %} - </div> -</section> + </div> + </section> {% endblock %} |