blob: 323b10177fed9423bbfb7b1c477536991a2eb8a3 (
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
44
45
46
|
<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}}   {{endtime_s}}
<div class="small">
{{lang_duration}}: {{duration_s}}
{{^duration_s}}{{lang_moreThanOneDay}}{{/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&action=add&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>
|