Skip to content
Snippets Groups Projects
Commit 6aac31b0 authored by Nick Barry's avatar Nick Barry
Browse files

Updated bulletin admin remove major view to include notes on what to do

parent e40b9440
No related branches found
No related tags found
1 merge request!2Projects Task 7
......@@ -20,10 +20,22 @@ $this->layout()->pageTitle = 'Remove Major';
<?php } ?>
<form method="post" action="<?php echo $this->baseUrl('bulletin/admin/remove-major-post/'); ?>">
<table><tr><td colspan="2">Select the major you would like to remove. This operation cannot be undone!<br /><br /></td></tr>
<table>
<tr>
<td colspan="2">Select the major you would like to remove. This operation cannot be undone!</td>
</tr>
<tr>
<td colspan="2" style="padding-left:15px;">
<ul>
<li>Do not remove a major that is supposed to be in the upcoming bulletin edition until the edition is finalized.</li>
<li>Be sure to manually mark 'removed=yes' in the DB for the current four-year-plan generation associated with the major.</li>
<li>Be sure to manually mark 'removed=yes' in the DB for the current learning outcome generation associated with the major.</li>
</ul>
</td>
</tr>
<tr><td>College: </td><td><?php echo $this->formSelect('college', NULL, NULL, array('_null' => '--Select--') + $this->colleges); ?></td></tr>
<tr><td>Major: </td><td><?php echo $this->formSelect('major', NULL, NULL, array('_null' => '--Select--') + $this->collegeMajors); ?></td></tr>
<tr><td style="vertical-align:top;">Justification: &nbsp;</td><td><?php echo $this->formTextarea('justification','',array('rows'=>'8','cols'=>'50')); ?></td></tr>
<tr><td></td><td align="right"><?php echo $this->formSubmit('submit', 'Submit'); ?></td></tr>
<tr><td></td><td><?php echo $this->formSubmit('submit', 'Submit'); ?></td></tr>
</table>
</form>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment