-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathcenter_details.html
More file actions
56 lines (53 loc) · 1.45 KB
/
center_details.html
File metadata and controls
56 lines (53 loc) · 1.45 KB
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
{% load i18n %}
<div class="container">
<h3>{% trans 'Polling Center Details' %}</h3>
<hr>
<table class="table table-bordered pull-left infotable">
<tr>
<td width="40%">
{% trans 'Barcode:' %}
</td>
<td>
{{ result_form.barcode }}
</td>
</tr>
<tr>
<td width="40%">{% trans 'Region Name:' %}</td>
<td width="">{{ result_form.center.office.region.name }}</td>
</tr>
<tr>
<td width="40%">{% trans 'Office Name:' %}</td>
<td width="">{{ result_form.center.office.name }}</td>
</tr>
<tr>
<td>{% trans 'Center Name:' %}</td>
<td>{{ result_form.center.name }}</td>
</tr>
<tr>
<td>{% trans 'Election Level:' %}</td>
<td>{{ result_form.ballot.electrol_race.election_level }}</td>
</tr>
<tr>
<td>{% trans 'Sub Race Type:' %}</td>
<td>{{ result_form.ballot.electrol_race.ballot_name }}</td>
</tr>
</table>
<table class="table table-bordered pull-right infotable">
<tr>
<td width="40%">
{% trans 'Voting District:' %}
</td>
<td>
{{ result_form.center.sc_code }}
</td>
</tr>
<tr>
<td width="40%">{% trans 'Center Code:' %}</td>
<td>{{ result_form.center.code }}</td>
</tr>
<tr>
<td>{% trans 'Station Code:' %}</td>
<td>{{ result_form.station_number }}</td>
</tr>
</table>
</div>