tagging as ATutor 1.5.4-release
[atutor.git] / themes / default / test_questions / multichoice.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 < $this->num_choices; $i++): ?>
5                 <li style="padding: 4px">
6                         <input type="radio" name="answers[<?php echo $this->row['question_id']; ?>]" value="<?php echo $i; ?>" id="choice_<?php echo $this->row['question_id'].'_'.$i; ?>" /><label for="choice_<?php echo $this->row['question_id'].'_'.$i; ?>"><?php echo AT_print($this->row['choice_'.$i], 'tests_questions.choice_'.$i); ?></label>
7         <?php endfor; ?>
8         <li style="padding: 4px">
9                 <input type="radio" name="answers[<?php echo $this->row['question_id']; ?>]" value="-1" id="choice_<?php echo $this->row['question_id']; ?>'_x" checked="checked" /><label for="choice_<?php echo $this->row['question_id']; ?>'_x"><em><?php echo _AT('leave_blank'); ?></em></label>
10         </li>
11 </ul>