summaryrefslogblamecommitdiffstats
path: root/modules-available/exams/templates/page-add-edit-exam.html
blob: 26cbf8bc26531e9d05489b8f9029b4a835a624e7 (plain) (tree)





































































                                                                                                                                                             
{{#exam.examid}}
<h1>{{lang_editExam}}</h1>
{{/exam.examid}}
{{^exam.examid}}
<h1>{{lang_addExam}}</h1>
{{/exam.examid}}

<form class="form" method="POST" action="?do=exams" id="tolleform">
	<div class="form-group">
		<label for="locations">{{lang_location}}</label>
		<select id="locations" multiple name="locations[]">
			{{#locations}}
			<option value="{{locationid}}" {{#selected}}selected{{/selected}}> {{locationname}}</option>
			{{/locations}}
		</select>
	</div>

	<div class="row">
		<div class="form-group col-xs-6">
			<label for="starttime_date">{{lang_begin_date}}</label>
			<input required class="form-control datepicker" name="starttime_date" id="starttime_date" value="{{exam.starttime_date}}">
		</div>
		<div class="form-group col-xs-6">
			<label for="starttime_time">{{lang_begin_time}}</label>
			<input required type="text" class="form-control timepicker" name="starttime_time" id="starttime_time" value="{{exam.starttime_time}}"
					 pattern="[0-9]{1,2}:[0-9]{2}">
		</div>
	</div>

	<div class="row">
		<div class="form-group col-xs-6">
			<label for="endtime_date">{{lang_end_date}}</label>
			<input required class="form-control datepicker" name="endtime_date" id="endtime_date" value="{{exam.endtime_date}}">
		</div>
		<div class="form-group col-xs-6">
			<label for="endtime_time">{{lang_end_time}}</label>
			<input required type="texxt" class="form-control timepicker" name="endtime_time" id="endtime_time" value="{{exam.endtime_time}}"
					 pattern="[0-9]{1,2}:[0-9]{2}">
		</div>
	</div>
	<div class="row">
		<div class="form-group col-xs-12">
			<label for="description">{{lang_description}}</label>
			<textarea class="form-control" type="textarea" name="description" id="description">{{exam.description}}</textarea>
		</div>
	</div>

	<input type="hidden" name="action" value="save">
	<input type="hidden" name="token" value="{{token}}">
	<input type="hidden" name="examid" value="{{exam.examid}}">
	<button class="btn btn-success">{{lang_addExam}}</button>
</form>

<script type="application/javascript"><!--
document.addEventListener("DOMContentLoaded", function () {
	var dateSettings = {
		format: 'yyyy-mm-dd',
		weekStart: 1,
		startDate: 'today',
	};
	var timeSettings = {
		showSeconds: false,
		showMeridian: false
	};
	$('.datepicker').datepicker(dateSettings);
	$('.timepicker').timepicker(timeSettings);

	$('#locations').multiselect({numberDisplayed: 1});
}, false);
// --></script>