AC_4897, AC_4898, AC_4899: Multifile uploader fixes.
[acontent.git] / docs / themes / default / tests / test_questions / likert_result.tmpl.php
1 <p><?php echo AT_print($this->row['question'], 'tests_questions.question'); ?></p>
2
3 <ul style="padding: 0px; margin: 0px; list-style-type: none">
4         <?php for ($i=0; $i < 10; $i++): ?>
5                 <?php if ($this->row['choice_'.$i] != ''): ?>
6                         <li style="padding: 4px; display: inline">
7                                 <?php if ($this->answer == $i): ?>
8                                         <img src="<?php echo $this->base_path; ?>images/checkbox_check.gif" alt="<?php echo _AT('checked'); ?>" title="<?php echo _AT('checked'); ?>" height="13" width="13" style="vertical-align: middle" />
9                                 <?php else: ?>
10                                         <img src="<?php echo $this->base_path; ?>images/checkbox_empty.gif" alt="<?php echo _AT('unchecked'); ?>" title="<?php echo _AT('unchecked'); ?>" height="13" width="13" style="vertical-align: middle" />
11                                 <?php endif; ?>
12                                 <?php echo AT_print($this->row['choice_'.$i], 'tests_answers.answer'); ?>
13                         </li>
14                 <?php endif; ?>
15         <?php endfor; ?>
16 </ul>