Skip to content
Snippets Groups Projects
found.phtml 4.56 KiB
Newer Older
<?php $this->headLink()->appendStylesheet($this->baseUrl() . '/css/courses/new.css'); ?>

<?php if($this->crosslisting) { ?>
<h2>
    The course <?php echo $this->subject , ' '
                        , $this->courseNumber
                        , $this->courseLetter; ?>
    currently exists as a crosslisting of
    <?php echo $this->course->getCourseCode(); ?>
    <br />
    Please contact the home department for requesting action on this course.
</h2>
<?php } else { ?>

<?php if ($this->activeRequest) { ?>
<h2 class="warning">
    Warning! This course is currently awaiting approval in an active request!<br />
    You probably do not want to submit another request for this course!
</h2>
<?php } ?>

<h2>
    The course <?php echo $this->subject , ' '
                        , $this->courseNumber
                        , $this->courseLetter; ?>

    currently exists.<br />
    You may:
</h2>
<ul>
    <li>
        <a href="<?php echo $this->url(array('action'       => 'create',
                                             'type'         => 'ChangeCourse',
                                             'subject'      => $this->subject,
                                             'courseNumber' => $this->courseNumber,
                                             'courseLetter' => $this->courseLetter)); ?>">
            Request <b>change</b> to an existing course
        </a>
    </li>
    <?php /*li>
        <a href="/Request/Create/AddISToCourse/<?php echo $this->subject
                                                        . '/' . $this->courseNumber
                                                        . '/' . $this->courseLetter; ?>">
            Request <b>Integrated Studies</b> status for this course
        </a>
    </li */ ?>
    <?php if (!$this->isAce) { ?>
    <li>
        <a href="<?php echo $this->url(array('action'       => 'create',
                                             'type'         => 'AddACEAndChangeCourse',
                                             'subject'      => $this->subject,
                                             'courseNumber' => $this->courseNumber,
                                             'courseLetter' => $this->courseLetter)); ?>">
            Request <b>change</b> to an existing course and <b>ACE Certification</b> (UCC Action won't be taken until Sept. 10, 2008)
        </a>
    </li>
    <li>
        <a href="<?php echo $this->url(array('action'       => 'create',
                                             'type'         => 'AddACEToCourse',
                                             'subject'      => $this->subject,
                                             'courseNumber' => $this->courseNumber,
                                             'courseLetter' => $this->courseLetter)); ?>">
            Request <b>ACE Certification</b> <em>only</em> for this course
        </a>
    </li>
    <?php } else if (!$this->isAce) { ?>
    <li>
        <a href="<?php echo $this->url(array('action'       => 'create',
                                             'type'         => 'RemoveACEFromCourse',
                                             'subject'      => $this->subject,
                                             'courseNumber' => $this->courseNumber,
                                             'courseLetter' => $this->courseLetter)); ?>">
            Request <b>removal</b> of <b>ACE Certification</b> for this course
        </a>
    </li>
    <li>
        <a href="<?php echo $this->url(array('action'       => 'create',
                                             'type'         => 'RemoveACEAndChangeCourse',
                                             'subject'      => $this->subject,
                                             'courseNumber' => $this->courseNumber,
                                             'courseLetter' => $this->courseLetter)); ?>">
            Request both a <b>change</b> and <b>removal</b> of <b>ACE Certification</b> for this course
        </a>
    </li>
    <?php } ?>
    <li>
        <a href="<?php echo $this->url(array('action'       => 'create',
                                             'type'         => 'RemoveCourse',
                                             'subject'      => $this->subject,
                                             'courseNumber' => $this->courseNumber,
                                             'courseLetter' => $this->courseLetter)); ?>">
            Request that this course be <b>removed</b>
        </a>
    </li>
    <li>
        <a href="<?php echo $this->baseUrl(); ?>/courses/new/search">
            Return to Search
        </a>
    </li>
</ul>

<?php }