summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/templates/ajax-config-location.html
blob: a5e7e45e9b73d1c181b5a59572307237c46e8f87 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
<input type="hidden" name="locationid" value="{{id}}">
<h3>{{lang_openingTime}}</h3>
<table class="table">
	{{#openingtimes}}
	<tr>
		<td>{{days}}</td>
		<td class="text-right">{{open}}&thinsp;-&thinsp;{{close}}</td>
	</tr>
	{{/openingtimes}}
</table>

<div class="row" style="margin-top: 20px; margin-right: 15px;">
	<a class="pull-right" title="{{lang_goToLocationWarning}}" href='?do=locations#{{id}}'>
		{{lang_goToLocation}}
		<span class="glyphicon glyphicon-arrow-right"></span>
	</a>
</div>
<hr>

<h3>{{lang_remoteSchedule}}</h3>
<div class="row">
	<div class="col-sm-4">
		<label for="backend-select">{{lang_backend}}</label>
	</div>
	<div class="col-sm-8">
		<select id="backend-select" class="form-control" name="serverid">
			<option value="0">{{lang_noServer}}</option>
			{{#serverlist}}
			<option value="{{serverid}}" {{selected}}>{{servername}}</option>
			{{/serverlist}}
		</select>
	</div>
	<div class="col-sm-12 small text-muted slx-smallspace">
		{{lang_serverTooltip}}
	</div>
</div>
<div class="row">
	<div class="col-sm-4"></div>
	<div class="col-sm-8">
		<div class="checkbox">
			<input type="checkbox" name="recursive" id="recursive-check">
			<label for="recursive-check">{{lang_recursiveServerSet}}</label>
		</div>
	</div>
	<div class="col-sm-12 small text-muted slx-smallspace">
		{{lang_recursiveSetTooltip}}
	</div>
</div>
<div class="row">
	<div class="col-sm-4">
		<label for="roomid-input">{{lang_roomId}}</label>
	</div>
	<div class="col-sm-8">
		<input id="roomid-input" class="form-control" name="serverlocationid" id="serverlocationid" value="{{serverlocationid}}">
	</div>
	<div class="col-sm-12 small text-muted slx-smallspace">
		{{lang_roomIdTooltip}}
	</div>
</div>