blob: 4ab70fe024ab80775911f0fd5db0b8d3ee9ce525 (
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
|
{% extends "base.html" %}
{% load i18n %}
{% load get_range %}
{% 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_comment.media }}
{% endblock %}
{% block content %}
<h2>{%if poll.category %}{{poll.category.name}} - {%endif%}{{poll.name}}</h2>
{% if error %}<p class='alert'>{{ error }}</p>{% endif %}
{% if not poll.open %}<p class='alert'>{% trans "The current poll is closed."%}</p>{% endif %}
<h3>{% trans "Description" %}</h3>
<p>{{ poll.description|safe }}</p>
<h3>{% trans "Participation" %}</h3>
<form method='post' action='.'>
{% csrf_token %}
<div id='poll_table'>
<table id='poll'>
<tr>
<td class='simple'></td>
<td class='simple'></td>
{% for choice in choices %}
<th>
{%if poll.dated_choices%}
{{choice.date|date:"D d M Y H:i"}}
{%else%}
{{choice.name}}
{%endif%}
{% if choice.limit %}
({% trans "max" %} {{choice.limit}})
{%endif%}
</th>
{% endfor %}
</tr>
<!-- Show voter and vote lines if votes aren't hidden -->
{% if not hide_vote %}
{% for voter in voters %}
<tr{% if voter.highlight %} class='highlighted_voter'{% endif %}>
{% ifequal current_voter_id voter.id %}
<input type='hidden' name='voter' value='{{voter.id}}'/>
<td class='simple'></td>
<td><input type='text' name='author_name' value='{{voter.user.name}}'/></td>
{% for vote in voter.votes %}
<td>
{% if vote.choice.available or vote.value %}
{% ifequal poll.type 'P' %}
<input type='checkbox' name='vote_{{vote.id}}'{%ifequal vote.value 1%} checked='checked'{%endifequal%}/>
{% endifequal %}
{% ifequal poll.type 'O' %}
<input type='radio' name='vote' value='{{vote.id}}' {%ifequal vote.value 1%} checked='checked'{%endifequal%}/>
{% endifequal %}
{% ifequal poll.type 'B' %}
<select name='vote_{{vote.id}}'>
{% for vote_choice in VOTE %}
<option value='{{vote_choice.0}}'{%ifequal vote.value vote_choice.0%} selected='selected'{%endifequal%}>{{vote_choice.1.1}}</option>
{% endfor %}
</select>
{% endifequal %}
{% ifequal poll.type 'V' %}
<select name='vote_{{vote.id}}'>
{% for vote_choice in 10|get_range %}
<option value='{{vote_choice}}'{%ifequal vote.value vote_choice%} selected='selected'{%endifequal%}>{{vote_choice}}</option>
{% endfor %}
</select>
{% endifequal %}
{% else %}
{% trans "Limit reached" %}
{% endif %}
</td>
{%endfor%}
{%else%}
<td class='simple'>{% if poll.open %}<a href='?voter={{voter.id}}'>{% trans "Edit" %}</a>{%else%} {%endif%}</td>
<td>{{voter.user.name}}</td>
{% for vote in voter.votes %}
{% ifequal poll.type 'V' %}
<td class='{%ifequal vote.value 9%}OK{%else%}{%ifequal vote.value 0%}KO{%else%}OKO{%endifequal%}{%endifequal%}'>
{%if vote.value%}{{vote.value}}{%else%}0{%endif%}
</td>
{% else %}
<td class='{%ifequal vote.value 1%}OK{%else%}{%ifequal vote.value 0%}OKO{%else%}KO{%endifequal%}{%endifequal%}'>
{%ifequal poll.type 'B'%}
{%for VOT in VOTE%}
{%ifequal VOT.0 vote.value%}
{{VOT.1.1}}
{%endifequal%}
{%endfor%}
{%else%}
{%for VOT in VOTE%}
{%ifequal VOT.0 vote.value%}
{{VOT.1.0}}
{%endifequal%}
{%endfor%}
{%endifequal%}
</td>
{% endifequal %}
{%endfor%}
{%endifequal%}
</tr>
{%endfor%} <!-- End for loop on voters-->
{%endif%} <!-- End if hide vote-->
<!-- Show line to add a new voter and votes -->
{%if not current_voter_id%}
{% if poll.open %}
<tr>
<td class='simple'></td>
<td><input type='text' name='author_name'/></td>
{%for choice in choices%}
<td>
{% if choice.available %}
{% ifequal poll.type 'P' %}
<input type='checkbox' name='choice_{{choice.id}}'/>
{% endifequal %}
{% ifequal poll.type 'O' %}
<input type='radio' name='choice' value='{{choice.id}}'/>
{% endifequal %}
{% ifequal poll.type 'B' %}
<select name='choice_{{choice.id}}'>
{% for vote_choice in VOTE %}
<option value='{{vote_choice.0}}'{%ifequal vote_choice.0 0%} selected='selected'{%endifequal%}>{{vote_choice.1.1}}</option>
{% endfor %}
</select>
{% endifequal %}
{% ifequal poll.type 'V' %}
<select name='choice_{{choice.id}}'>
{% for vote_choice in 10|get_range %}
<option value='{{vote_choice}}'>{{vote_choice}}</option>
{% endfor %}
</select>
{% endifequal %}
{% else %}
{% trans "Limit reached" %}
{% endif %}
</td>
{%endfor%}
</tr>
{%endif%}<!-- End if poll.open -->
{%endif%}<!-- End if not current_voter_id -->
<!-- Show total line if votes aren't hidden -->
{% if not hide_vote %}
<tr id='sum'>
<td class='simple'></td>
<th>{% trans "Sum" %}</th>
{% for choice in choices %}
<td{%if choice.highlight %} class='highlight'{%endif%}>{{choice.getSum}}</td>
{% endfor %}
</tr>
{%endif%}
<!-- Show button to edit/participate-->
{% if poll.open %}
<tr>
<td class='simple'></td>
<td class='simple'>
<input type='submit' value='{%if current_voter_id%}{% trans "Edit" %}{%else%}{% trans "Participate" %}{%endif%}' class='submit'/>
</td>
</tr>
{% endif %}
</table> <!-- End poll table -->
</div><!-- End poll_table div -->
<hr class='spacer'/>
</form>
{%if poll.opened_admin%}
<p><a href="{% url 'edit_choices_user' poll.base_url %}">{%trans "Add a new choice to this poll?"%}</a></p>
{%endif%}
<div class='footnote'>
{%if hide_vote%}
<p>
{% trans "You have already vote? You are enough wise not to be influenced by other votes? You can display result by clicking" %}
<a href='?display_result=1'>{% trans "here" %}</a>.
</p>
{%else%}
<p>
{% trans "Remain informed of poll evolution:" %}
<a href="../../feeds/poll/{{poll.base_url}}">{%trans "RSS syndication"%}</a>
</p>
{%endif%}
</div>
{%if not hide_vote and max_comment_nb %}
<h3>{%trans "Comments"%} ({% blocktrans %}{{max_comment_nb}} max{% endblocktrans %})</h3>
<ul class='comments'>
{%for comment in comments%}
<li>
<p class='author'>{{comment.author_name}}, {{comment.date|date:_("DATETIME_FORMAT")}} :</p>
{{comment.text|safe}}
</li>
{%endfor%}
</ul>
{%if poll.open and max_comment_nb > poll.comments.count %}
<form class="new_poll" method='post' action='.'>
<div class="field_label">{% trans "Add a comment"%}</div>
<div class="field_label">
<label for='comment_author'>{% trans "Author name" %}</label>
</div>
<input type='text' id='comment_author' name='comment_author'/>
<div class="field_label">
<label for='comment'>{% trans "Comment"%}</label>
</div>
<textarea id='comment' name='comment' cols='' rows=''></textarea>
<input type='submit' class='submit' value='{% trans "Send" %}'/>
</form>
{%endif%}
{%endif%}
{% endblock %}
|