summaryrefslogblamecommitdiffstats
path: root/modules-available/exams/templates/page-exams.html
blob: fc88e4f4a3a24ef0bbb9e993cf892cb07adc0a71 (plain) (tree)


















                                                      




                                                                                  






                                                                     


                                                                    












                                                                                                                                                                              
      
 


                                                                                   
<h2>{{lang_allExamPeriods}}</h2>

<div class="slx-space">
	<table class="table">
		<tr>
			<th>{{lang_id}}</th>
			<th>{{lang_locations}}</th>
			<th>{{lang_begin}}</th>
			<th>{{lang_end}}</th>
			<th>{{lang_actions}}</th>
		</tr>
		{{#exams}}
		<tr class="{{rowClass}}">
			<td>{{examid}}</td>
			<td>
				{{locationnames}}
				{{^locationnames}}
				<i>{{lang_global}}</i>
				{{/locationnames}}
				{{#lecturename}}
				<div>
					<b>{{lang_autostart}}</b>: {{lecturename}}
				</div>
				{{/lecturename}}
				<div class="small">
					{{description}}
					{{^description}}
					<i>{{lang_noDescription}}</i>
					{{/description}}
				</div>
			</td>
			<td class="text-nowrap">{{starttime_s}}</td>
			<td class="text-nowrap">{{endtime_s}}</td>
			<td class="text-nowrap text-right">
				<form method="POST" action="?do=exams&action=delete" {{^liesInPast}}onsubmit="return confirm('{{lang_deleteConfirmation}}');"{{/liesInPast}} >
					{{^liesInPast}}
					<a onclick="slxShow({{starttime}}, {{endtime}})" class="btn btn-default btn-sm"><span class="glyphicon glyphicon-eye-open"></span></a>
					{{/liesInPast}}
					<a href="?do=exams&action=edit&examid={{examid}}" class="btn btn-default btn-sm" >{{lang_edit}}</a>
					<input type="hidden" name="token" value="{{token}}">
					<input type="hidden" name="examid" value="{{examid}}">
					<button class="btn {{btnClass}} btn-sm">{{lang_delete}}</button>
				</form>
			</td>
		</tr>
		{{/exams}}
	</table>
</div>

<div class="btn-group" role="group">
	<a href="?do=exams&action=add" class="btn btn-success">{{lang_addExam}}</a>
</div>