blob: fa8aac57788deb72e78bb2b723e459e9afc10873 (
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
|
{% 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>
{% if proposal.proposal_type == "ABSTRACT" %}
<h2>Edit Abstract Proposal</h2>
{% else %}
<h2>Edit Workshop Proposal</h2>
{% endif %}
</center>
</p>
<h3>{{ proposal.user.first_name }} {{ proposal.user.last_name }}</h3>
<form action="" method=POST enctype="multipart/form-data">
{% csrf_token %}
<div class="row1">
{% for field in 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="button special" type="submit">Submit</button></center>
</form>
</div>
{% endblock %}
{% include 'footer.html' %}
</body>
</html>
|