2006-04-07 16:00:29 +00:00
|
|
|
<?php
|
|
|
|
/* This template determines the overall layout of a question. It is included by the
|
|
|
|
* print_question() method.
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<table class="que comment">
|
|
|
|
<tr valign="top">
|
|
|
|
<td>
|
|
|
|
<b><?php print_string('comment', 'quiz'); ?>: </b>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php
|
2006-04-08 21:48:31 +00:00
|
|
|
print_textarea($usehtmleditor, 15, 60, 630, 300, $prefix.'[comment]', $state->comment);
|
2006-04-07 16:00:29 +00:00
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
|
|
<td>
|
|
|
|
<b><?php print_string('grade', 'quiz'); ?>: </b>
|
|
|
|
</td>
|
|
|
|
<td>
|
2006-04-08 21:48:31 +00:00
|
|
|
<input type="text" name="<?php echo $prefix; ?>[grade]" size="2" value="<?php echo $grade; ?>" />/<?php echo $question->maxgrade; ?>
|
2006-04-07 16:00:29 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2006-04-08 08:16:04 +00:00
|
|
|
</table>
|