Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?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 }