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
<?php $this->headLink()->appendStylesheet($this->baseUrl() . '/css/courses/new.css'); ?>
<div class="content">
<?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; ?>
does not yet exist.
You may:
</h2>
<ul>
<li>
<a href="<?php echo $this->url(array('action' => 'create',
'type' => 'NewCourse',
'subject' => $this->subject,
'courseNumber' => $this->courseNumber,
'courseLetter' => $this->courseLetter)); ?>">
Request a <b>new course</b>
</a>
</li>
<?php /* li>
<a href="/Request/Create/NewCourseWithIS/<?php echo $this->subject
. '/' . $this->courseNumber
. '/' . $this->courseLetter; ?>">
Request a <b>new course</b> with <b>Integrated Studies</b> status
</a>
</li */ ?>
<li>
<a href="<?php echo $this->url(array('action' => 'create',
'type' => 'NewCourseWithACE',
'subject' => $this->subject,
'courseNumber' => $this->courseNumber,
'courseLetter' => $this->courseLetter)); ?>">
Request a <b>new course</b> with <b>ACE certification</b> (UCC Action won't be taken until Sept. 10, 2008)
</a>
</li>
<li>
<a href="/Request/Search">
Return to Search
</a>
</li>
</ul>
</div>