|
|
|
|
@ -59,21 +59,21 @@ class UniqueAnswer extends Question |
|
|
|
|
|
|
|
|
|
if ($obj_ex->selectFeedbackType() == EXERCISE_FEEDBACK_TYPE_DIRECT) { |
|
|
|
|
//Scenario |
|
|
|
|
$comment_title = '<th>' . get_lang('Comment') . '</th>'; |
|
|
|
|
$feedback_title = '<th>' . get_lang('Scenario') . '</th>'; |
|
|
|
|
$comment_title = '<th width="20%">' . get_lang('Comment') . '</th>'; |
|
|
|
|
$feedback_title = '<th width="20%">' . get_lang('Scenario') . '</th>'; |
|
|
|
|
} else { |
|
|
|
|
$comment_title = '<th >' . get_lang('Comment') . '</th>'; |
|
|
|
|
$comment_title = '<th width="40%">' . get_lang('Comment') . '</th>'; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$html = '<table class="table table-striped table-hover"> |
|
|
|
|
<thead> |
|
|
|
|
<tr style="text-align: center;"> |
|
|
|
|
<th width="10">' . get_lang('Number') . '</th> |
|
|
|
|
<th>' . get_lang('True') . '</th> |
|
|
|
|
<th>' . get_lang('Answer') . '</th> |
|
|
|
|
<th width="5%">' . get_lang('Number') . '</th> |
|
|
|
|
<th width="5%"> ' . get_lang('True') . '</th> |
|
|
|
|
<th width="40%">' . get_lang('Answer') . '</th> |
|
|
|
|
' . $comment_title . ' |
|
|
|
|
' . $feedback_title . ' |
|
|
|
|
<th width="10">' . get_lang('Weighting') . '</th> |
|
|
|
|
<th width="10%">' . get_lang('Weighting') . '</th> |
|
|
|
|
</tr> |
|
|
|
|
</thead> |
|
|
|
|
<tbody>'; |
|
|
|
|
@ -252,7 +252,7 @@ class UniqueAnswer extends Question |
|
|
|
|
} else { |
|
|
|
|
$form->addHtmlEditor('comment[' . $i . ']', null, null, false, $editor_config); |
|
|
|
|
} |
|
|
|
|
$form->addText('weighting[' . $i . ']', null, null, array('style' => 'width: 60px;', 'value' => '0')); |
|
|
|
|
$form->addText('weighting[' . $i . ']', null, null, array('value' => '0')); |
|
|
|
|
$form->addHtml('</tr>'); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|