Automatic installer.php lang files by installer_builder (20081104)
[moodle.git] / question / comment.html
blob6e44071b48bddfa51bfaa17951f5bc15d378113f
1 <?php
2 // This template determines the layout of the manual grading form. It is
3 // included by both by question_print_comment_box method from questionlib.php,
4 // and the print_questions_and_form method from the manual grading report.
5 ?>
6 <table class="que comment">
7 <tr valign="top">
8 <td>
9 <b><?php print_string('comment', 'quiz'); ?>: </b>
10 </td>
11 <td>
12 <?php
13 print_textarea($usehtmleditor, 15, 60, 630, 300, $prefix.'[comment]', stripslashes($state->manualcomment));
15 </td>
16 </tr>
17 <tr valign="top">
18 <td>
19 <b><?php print_string('grade', 'quiz'); ?>: </b>
20 </td>
21 <td>
22 <input type="text" name="<?php echo $prefix; ?>[grade]" size="2" value="<?php echo $grade; ?>" />/<?php echo $question->maxgrade; ?>
23 </td>
24 </tr>
25 </table>