blob: baeb7c800eab04ed7c0df7d85ea9f7f190c7413e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[% INCLUDE 'admin/header.html' title=loc('Survey Results') %]
<table border="1">
<tr>
<th>[% loc('Reported before') %]</th>
<th>[% loc('Not reported before') %]</th>
</tr>
[% IF questionnaires.total > 0 %]
<tr>
<td>[% questionnaires.1 %] ([% reported_pc %]%)</td>
<td>[% questionnaires.0 %] ([% not_reported_pc %]%)</td>
</tr>
[% ELSE %]
<tr>
<td>[% loc('n/a') %]</td>
<td>[% loc('n/a') %]</td>
</tr>
[% END %]
</table>
[% INCLUDE 'admin/footer.html' %]
|