diff --git a/application/modules/bulletin/views/scripts/admin/remove-major.phtml b/application/modules/bulletin/views/scripts/admin/remove-major.phtml index 2bfc82dbe6ae9ef7f9141acc80462654d3722c53..dd3599ab5b0fb01c74030361bae02326b3f72100 100644 --- a/application/modules/bulletin/views/scripts/admin/remove-major.phtml +++ b/application/modules/bulletin/views/scripts/admin/remove-major.phtml @@ -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: </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>