moodle/mod/survey/mod.html
martin b5fe4c935d Major changes throughout to change "week" notation to "section" notation.
Sections covers "weeks", "topics" and anything else that may come along.
Note, again, some databases have changed esp course_weeks -> course_sections
and several fields called "week" are now "section.  Also course no longer
has an enddate, but instead has a numsections field.
2002-06-25 11:49:06 +00:00

36 lines
1.3 KiB
HTML

<form name="form" method="post" action="<?=$CFG->wwwroot ?>/mod/survey/details.php">
<table cellpadding=5>
<tr valign=top>
<td align=right><P><B>Survey Name:</B></P></TD>
<td>
<input type="text" name="name" size=30 value="<? p($form->name) ?>">
</td>
</tr>
<tr>
<td align=right><P><B>Survey Type:</B></P></TD>
<td>
<?
if ($options = get_records_sql_menu("SELECT id, name FROM survey WHERE template='0'")) {
choose_from_menu($options, "template", $form->template);
} else {
echo "No surveys to choose from!";
}
?>
</td>
</tr>
</table>
<CENTER>
<input type="hidden" name=intro value="<? p($form->intro) ?>">
<input type="hidden" name=destination value="<?=$ME ?>">
<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) ?>">
<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) ?>">
<input type="submit" value="Save these settings">
</CENTER>
</FORM>