blob: 47967475f26041cc8c9923692245910fe01cf686 (
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
|
<!-- BEGIN page_title_block -->
Community: Survey Results: {page_title}
<!-- END page_title_block -->
<h1>func_lang("Survey Results")</h1>
<p>func_lang("The current results of our <b>{result_title}</b> survey are:")</p>
<div class="tblBasic">
<table border="0" cellpadding="0" cellspacing="0" class="tblBasicGrey">
<tr>
<th class="colFirst">func_lang("Answer")</th>
<th class="colMid">func_lang("Responses")</th>
<th class="colLast">func_lang("Percentage")</th>
</tr>
<!-- BEGIN result_option_loop -->
<tr>
<td class="colFirst">{result_option}</td>
<td class="colMid">{result_votes}</td>
<td class="colLast">{result_percent}%</td>
</tr>
<!-- END result_option_loop -->
<tr class="lastrow">
<td class="colFirst"><b>func_lang("Total")</b></td>
<td class="colMid">{result_total}</td>
<td class="colLast"></td>
</tr>
</table>
<!-- BEGIN other_surveys_block -->
<h2>func_lang("Other Surveys")</h2>
<ul>
<!-- BEGIN other_surveys_loop -->
<li><a href="/community/survey.{other_id}">{other_question}</a></li>
<!-- END other_surveys_loop -->
</ul>
<!-- END other_surveys_block -->
|