Skip to content
Snippets Groups Projects
Commit bcd85f62 authored by Tim Steiner's avatar Tim Steiner
Browse files

Allow admin to alter the proposed/official property of a course generation.

parent c2e1c942
No related branches found
No related tags found
No related merge requests found
......@@ -469,7 +469,25 @@
<?php } ?>
</table> */ ?>
<input type="submit" />
<fieldset>
<h3>Record Type</h3>
<label>
Proposed:
<input type="radio"
name="type"
value="proposed"
<?php if($this->course->type == 'proposed') { ?>checked="checked"<? } ?> />
</label>
<label>
Official:
<input type="radio"
name="type"
value="official"
<?php if($this->course->type == 'official') { ?>checked="checked"<? } ?> />
</label>
</fieldset>
<input type="submit" value="Update Course" />
</form>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment