Skip to content

Commit

Permalink
Improved the HTML for essay questions.
Browse files Browse the repository at this point in the history
  • Loading branch information
tjhunt committed Jun 21, 2007
1 parent f21ed0f commit 4a5b91b
Showing 1 changed file with 8 additions and 13 deletions.
21 changes: 8 additions & 13 deletions question/type/essay/display.html
Expand Up @@ -10,18 +10,13 @@
<div class="prompt">
<?php echo $stranswer; ?>
</div>

<table class="answer">
<tr>
<td>
<?php echo $answer; ?>
</td>
</tr>
<tr>
<td class="feedback">
<?php echo $feedback; ?>
</td>
</tr>
</table>
<table class="answer"><tr><td><?php // HTML editors have to go in tables. ?>
<?php echo $answer; ?>
</td></tr></table>
<?php if ($feedback) { ?>
<div class="feedback">
<?php echo $feedback; ?>
</div>
<?php } ?>
<?php $this->print_question_submit_buttons($question, $state, $cmoptions, $options); ?>
</div>

0 comments on commit 4a5b91b

Please sign in to comment.