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

Disallow creating requests based on crosslisted courses.

parent f23c58bd
No related branches found
No related tags found
No related merge requests found
<?php if($this->crosslisting) { ?>
<h2>
The course <?php echo $this->subject , ' '
, $this->courseNumber
, $this->courseLetter; ?>
currently exists as a crosslisting of
<?php echo trim($this->homeSubject . ' '
. $this->homeCourseNumber . ' '
. $this->homeCourseLetter) . '.'; ?>
<br />
Please make requests via the home listing.
<h2>
<?php } else { ?>
<h2>
The course <?php echo $this->subject , ' '
, $this->courseNumber
, $this->courseLetter; ?>
<h2>
The course <?php echo $this->subject , ' '
, $this->courseNumber
, $this->courseLetter; ?>
<?php if(!$this->crosslisting) { ?>
currently exists.
<?php } else { ?>
currently exists as a crosslisting of
<?php echo trim($this->homeSubject . ' '
. $this->homeCourseNumber . ' '
. $this->homeCourseLetter) . '.'; ?>
<?php } ?>
<br />
You may:
</h2>
<ul>
<li>
<a href="/Request/Create/ChangeCourse/<?php echo $this->subject
. '/' . $this->courseNumber
. '/' . $this->courseLetter; ?>">
Request a <b>change</b> to this course
</a>
</li>
<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>
<li>
<a href="/Request/Create/RemoveCourse/<?php echo $this->subject
. '/' . $this->courseNumber
. '/' . $this->courseLetter; ?>">
Request that this course be <b>removed</b>
</a>
</li>
<li>
<a href="/Request/Search">
Return to Search
</a>
</li>
</ul>
\ No newline at end of file
currently exists.<br />
You may:
</h2>
<ul>
<li>
<a href="/Request/Create/ChangeCourse/<?php echo $this->subject
. '/' . $this->courseNumber
. '/' . $this->courseLetter; ?>">
Request a <b>change</b> to this course
</a>
</li>
<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>
<li>
<a href="/Request/Create/RemoveCourse/<?php echo $this->subject
. '/' . $this->courseNumber
. '/' . $this->courseLetter; ?>">
Request that this course be <b>removed</b>
</a>
</li>
<li>
<a href="/Request/Search">
Return to Search
</a>
</li>
</ul>
<?php }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment