summaryrefslogtreecommitdiffstats
path: root/modules-available/exams/templates/page-upcoming-lectures.html
blob: a1867444006949b4e61a07549bef69350132a4a1 (plain) (blame)
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
<h2>{{lang_headingAllExamLectures}}</h2>

<div class="slx-space">
	<table class="table">
		<tr>
			<th>{{lang_lectureName}}</th>
			<th>{{lang_timeFrame}}</th>
			<th>{{lang_actions}}</th>
		</tr>
		{{#pending_lectures}}
		<tr class="{{class}}">
			<td>
				{{displayname}}
				<div class="small">
					<a href="mailto:{{email}}">{{lastname}}, {{firstname}}</a>
				</div>
			</td>
			<td width="30%" class="text-nowrap">
				{{starttime_s}} &ensp; {{endtime_s}}
				<div class="small">{{duration_s}}</div>
			</td>
			<td width="20%">
				<div class="pull-right text-nowrap">
					<a class="btn btn-sm btn-default" role="button" onclick="slxShow({{starttime}}, {{endtime}})"><span class="glyphicon glyphicon-eye-open"></span></a>
					<a href="?do=exams&amp;action=add&amp;lectureid={{lectureid}}" class="btn btn-sm btn-default" role="button">
						<span class="glyphicon glyphicon-plus-sign"></span>
						<span class="hidden-sm">{{lang_addExam}}</span>
					</a>
				</div>
			</td>
		</tr>
		{{/pending_lectures}}
		{{#decollapse}}
		<tr class="slx-decollapse">
			<td colspan="3">
				<span class="btn-group btn-group-justified">
					<span class="btn btn-default btn-sm"><span class="glyphicon glyphicon-menu-down"></span></span>
				</span>
			</td>
		</tr>
		{{/decollapse}}
	</table>
</div>