moodle/course/mod_delete.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

17 lines
811 B
HTML

<table align=center cellpadding=20> <tr> <td colspan=2 bgcolor=#ffaaaa>
<CENTER>
<FORM name="form" method="post" action="<?=$ME ?>">
<? print_heading("Are you absolutely sure you want to delete the $form->fullmodulename '$form->instancename' ?") ?>
<input type="hidden" name=mode value="delete">
<input type="hidden" name=section value="<? echo $form->section; ?>">
<input type="hidden" name=course value="<? p($form->course) ?>">
<input type="hidden" name=coursemodule value="<? p($form->coursemodule) ?>">
<input type="hidden" name=modulename value="<? p($form->modulename) ?>">
<input type="hidden" name=instance value="<? p($form->instance) ?>">
<input type="submit" value=" Yes "> <input type=button value=" No " onclick="javascript:history.go(-1);">
</FORM>
</td></tr></table>