blob: 647700d92c6b3fbac253bc2a2d1de858a07e399c (
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
|
{% extends "base.html" %}
{% load markup %}
{% load i18n %}
{% block fullscript %}
<script type="text/javascript" src="{% url 'admin_i18n' %}"></script>
<script type="text/javascript" src="{{admin_url}}js/core.js"></script>
<script type="text/javascript" src="{{admin_url}}js/admin/RelatedObjectLookups.js"></script>
{{ form.media }}
{% endblock %}
{% block content %}
<h2>{% trans "Edit poll" %}</h2>
<form action="." method="post">
<table class='new_poll'>
<tr>
<td><label>{% trans "Poll url" %}</label></td>
<td>
<a href="{% url 'poll' poll.base_url %}">{{ base_url }}</a>
</td>
<td class='form_description'><p>
{% trans "Copy this address and send it to voters who want to participate to this poll" %}
</p></td>
</tr>
<tr>
<td><label>{% trans "Administration url" %}</label></td>
<td>
<a href="{% url 'edit' poll.admin_url %}">{{ edit_url }}</a>
</td>
<td class='form_description'><p>
{% trans "Address to modify the current poll" %}
</p></td>
</tr>
<tr>
<td><label>{% trans "Choices administration url" %}</label></td>
<td>
<a href="{% url 'edit_choices_admin' poll.admin_url %}">{{choices_url }}</a>
</td>
<td class='form_description'><p>
{% trans "Address to modify choices of the current poll." %}
</p></td>
</tr>
{% for field in form %}
{% if field.is_hidden %}
{{field}}
{% else %}
<tr><td colspan='3'>{{field.errors}}</td></tr>
<tr>
<td>{{field.label_tag}}</td>
<td>{{field}}</td>
{% if field.help_text %}<td class='form_description'>{{field.help_text|markdown}}</td>{%endif%}
</tr>
{% endif %}
{% endfor %}
<tr>
<td></td>
<td><input type='submit' value='{% trans "Edit" %}' class='submit'/></td>
</tr>
</table>
</form>
{% endblock %}
|