mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
25 lines
662 B
HTML
25 lines
662 B
HTML
<?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
|
|
print_textarea($usehtmleditor, 15, 60, 630, 300, $prefix.'[comment]', $state->comment);
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<tr valign="top">
|
|
<td>
|
|
<b><?php print_string('grade', 'quiz'); ?>: </b>
|
|
</td>
|
|
<td>
|
|
<input type="text" name="<?php echo $prefix; ?>[grade]" size="2" value="<?php echo $grade; ?>" />/<?php echo $question->maxgrade; ?>
|
|
</td>
|
|
</tr>
|
|
</table> |