blob: e6d1fd0f25445d6d84289451d512ebb28ae9563d (
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
|
{% 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">
<p>
<center>
<h2>Submit Workshop Proposal</h2>
</center>
</p>
<hr>
{% if proposals_w > 1 %} You have exceeded the workshop proposal submission limit.
You may view your submitted proposals by clicking <a href="{% url 'website:view_abstracts' %}" class="btn "> here</a>
<!-- <h2>{{ user.get_full_name|default:user.username }} </h2> -->
<!-- <h2>{{ user.get_full_name|default:user.username }} </h2> -->
<h2><u>Proposal Guidelines</u></h2>
<!-- <li>To be announced</li><br> -->
<ul>
<li>Please note that there are two parallel tracks, one for beginners and one for advanced users.</li>
<li>Please make sure the workshops are hands-on with plenty of exercises for the users.</li>
<li>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.</li>
<li>Please provide us with links to any resources you have already prepared for the workshop.</li>
<li>The more detail you provide on your workshop, the easier it will be for us to pick it.</li>
<li>
Provide us with the following sections:
<ul>
<li>Duration</li>
<li>Track: beginner or advanced</li>
<li>Intended audience</li>
<li>Why should someone attend your workshop? What will they get at the end of it?</li>
<li>Outline of workshop with a reasonable breakup in terms of time.</li>
<li>Possibly provide any material or similar material you plan to use.</li>
<li>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?</li>
</ul>
</li>
</ul>
<form action="" method=POST enctype="multipart/form-data">
<!-- <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 %}
{% if form.error %}
Auch
{% endif %}
<center><button class="button special" style="background:#D44727" type="submit">Submit</button></center>
{% endif %}
</div>
{% endblock %}
{% include 'footer.html' %}
</body>
</html>
|