-
Notifications
You must be signed in to change notification settings - Fork 0
/
formSessionC.cfm
40 lines (40 loc) · 1.09 KB
/
formSessionC.cfm
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
<cfoutput>
<cfset pageTitle = "Add an Instructional Session: Optional Data for #Activity.Title#">
<cfinclude template="incBegin.cfm">
<cfinclude template="incJSShowCalendar.cfm">
<span class="formSectionTitle">#pageTitle#</span>
<div class="form">
<table border="0" cellpadding="0" cellspacing="0">
<tr valign="top">
<td>
<a href="addRemoveContact.cfm?SessID=#SESSION.SessID#">Add Faculty</a>
</td>
</tr>
<tr valign="top">
<td>
<a href="addRemoveLibrarian.cfm?SessID=#SESSION.SessID#">Add Co_Presenter(s)</a>
</td>
</tr>
<tr valign="top">
<td>
<a href="addRemoveLibrarian.cfm?SessID=#SESSION.SessID#">Add Developer(s)</a>
</td>
</tr>
<tr valign="top">
<td>
<a href="addRemoveMaterial.cfm?ActID=#SESSION.ActID#">Add Material(s)</a>
</td>
</tr>
<tr valign="top">
<td>
<a href="addRemoveClassroom.cfm?SessID=#SESSION.SessID#">Add Classroom</a>
</td>
</tr>
<tr valign="top">
<td>
<a href="updateAssessment.cfm?SessID=#SESSION.SessID#">Add Assessment</a>
</td>
</tr>
</table>
</div>
</cfoutput>