moodle/mod/choice/mod.html

79 lines
2.9 KiB
HTML
Raw Normal View History

2001-11-22 06:23:56 +00:00
<FORM NAME="form" METHOD="post" ACTION="<?=$ME ?>">
<table cellpadding=5>
<tr valign=top>
2002-08-12 08:28:04 +00:00
<td align=right><P><B><? print_string("choicename","choice") ?>:</B></P></TD>
2001-11-22 06:23:56 +00:00
<td>
<input type="text" name="name" size=30 value="<? p($form->name) ?>">
</td>
</tr>
<tr valign=top>
2002-08-12 08:28:04 +00:00
<td align=right><P><B><? print_string("choicetext","choice") ?>:</B></P></TD>
2001-11-22 06:23:56 +00:00
<td>
2002-09-08 09:47:10 +00:00
<textarea name="text" rows=20 cols=40 wrap="virtual"><? p($form->text) ?></textarea>
<? helpbutton("text", get_string("helptext")); ?>
2001-11-22 06:23:56 +00:00
</td>
</tr>
<tr valign=top>
<td align=right><P><B><? print_string("choice","choice","1") ?>:</B></P></TD>
2001-11-22 06:23:56 +00:00
<td>
<input type="text" name="answer1" size=30 value="<? p($form->answer1) ?>">
<? helpbutton("options", get_string("modulenameplural", "choice"), "choice") ?>
2001-11-22 06:23:56 +00:00
</td>
</tr>
<tr valign=top>
<td align=right><P><B><? print_string("choice","choice","2") ?>:</B></P></TD>
2001-11-22 06:23:56 +00:00
<td>
<input type="text" name="answer2" size=30 value="<? p($form->answer2) ?>">
<? helpbutton("options", get_string("modulenameplural", "choice"), "choice") ?>
</td>
</tr>
<tr valign=top>
<td align=right><P><B><? print_string("choice","choice","3") ?>:</B></P></TD>
<td>
<input type="text" name="answer3" size=30 value="<? p($form->answer3) ?>">
<? helpbutton("options", get_string("modulenameplural", "choice"), "choice") ?>
</td>
</tr>
<tr valign=top>
<td align=right><P><B><? print_string("choice","choice","4") ?>:</B></P></TD>
<td>
<input type="text" name="answer4" size=30 value="<? p($form->answer4) ?>">
<? helpbutton("options", get_string("modulenameplural", "choice"), "choice") ?>
</td>
</tr>
<tr valign=top>
<td align=right><P><B><? print_string("choice","choice","5") ?>:</B></P></TD>
<td>
<input type="text" name="answer5" size=30 value="<? p($form->answer5) ?>">
<? helpbutton("options", get_string("modulenameplural", "choice"), "choice") ?>
</td>
</tr>
<tr valign=top>
<td align=right><P><B><? print_string("choice","choice","6") ?>:</B></P></TD>
<td>
<input type="text" name="answer6" size=30 value="<? p($form->answer6) ?>">
<? helpbutton("options", get_string("modulenameplural", "choice"), "choice") ?>
2001-11-22 06:23:56 +00:00
</td>
</tr>
</table>
<CENTER>
<input type="hidden" name=course value="<? p($form->course) ?>">
<input type="hidden" name=coursemodule value="<? p($form->coursemodule) ?>">
<input type="hidden" name=section value="<? p($form->section) ?>">
2001-11-22 06:23:56 +00:00
<input type="hidden" name=module value="<? p($form->module) ?>">
<input type="hidden" name=modulename value="<? p($form->modulename) ?>">
<input type="hidden" name=instance value="<? p($form->instance) ?>">
<input type="hidden" name=mode value="<? p($form->mode) ?>">
2002-08-12 08:28:04 +00:00
<input type="submit" value="<? print_string("savechanges") ?>">
2002-10-16 04:51:55 +00:00
<input type="submit" name=cancel value="<? print_string("cancel") ?>">
2001-11-22 06:23:56 +00:00
</CENTER>
</FORM>