blob: 56e3c3f4cafbaadbffd42fa1ccafedb13708e42f (
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
|
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="{% static 'img/favicon.ico'%}" type="icon">
<title>SciPy India 2017</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="{% static 'vendor/bootstrap/css/bootstrap.min.css' %}" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="{% static 'css/one-page-wonder.css' %}" rel="stylesheet">
</head>
<body data-spy="scroll" data-target=".navbar" data-offset="50">
{% include 'navbar.html' %}
{% block content %}
<div class="container">
{% if proposals_a > 1 %} You have exceeded the abstract submission limit.
You may view your submitted proposals by clicking <a href="{% url 'website:view_abstracts' %}" class ="btn btn-info" role="button"> here</a>
<!-- <h2>{{ user.get_full_name|default:user.username }} </h2> -->
{% else %}
<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 }}</a>
-->
<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></center>
</form>
{% endif %}
</div>
{% endblock %}
{% include 'footer.html' %}
</body>
</html>
|