blob: 75e8a954f341cec647cabeaa0e4a9f0edf554ecf (
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
|
{% extends 'base.html' %}
{% load static %}
<!DOCTYPE HTML>
<html>
<head>
<title>Call for Proposal</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css" />
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
</head>
<body>
{% block header %}
<header id="header1">
<h1>SciPy India 2016</h1>
<h2>Submit Workshop Proposal</h2>
</header>
{% endblock %}
<div id="wrapper">
{% block nav %}
<div id="navbar-main">
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="{% url 'website:home' %}" class="active">Home</a></li>
{% if user and not user.is_anonymous %}
<li><a href="{% url 'website:cfp' %}">{{ user.get_full_name|default:user.username }}</a>
<li><a href="{% url 'auth:logout' %}?next=/2016/cfp">Logout</a></li>
{% else %}
<li><a href="{% url 'website:cfp' %}" >Login</a></li>
{% endif %}
</ul>
</div>
</div>
</div>
{% endblock %}
{% block content %}
<div id="wrapper">
<div id="main">
<section id="content" class="main">
{% 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>
</div>
</div>
</section>
{% else %}
<div id="wrapper">
<!-- <div id="main"> -->
<section id="content" class="main">
<!-- <h2>{{ user.get_full_name|default:user.username }} </h2> -->
<h2><u>Proposal Guidelines</u></h2>
<!-- <li>To be announced</li><br> -->
<ul>
<li>The project you are willing to present should be an actual implementation rather than just an idea.
<li>Dscription should be of 300 to 700 words describing the topic, including its relevance to scientific computing.
<li>Proposals with an aim to promote a commercial product or service will be rejected.
<li>In your abstract mention about various tools/libraries used for development.
<li>Notification for selection/rejection of your proposal will be given through email.
<li>All selected proposals must be presented at the conference by at least one author.
</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>
</section>
</div>
{% endif %}
{% endblock %}
{% block footer %}
{% endblock %}
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/js/main.js"></script>
</body>
</html>
|