summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/templates/server-prop-dropdown.html
blob: d1351551f7dd9ba53ee78f9da56f163fc13b3bcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div class="list-group-item">
	<div class="row">
		<div class="col-md-3"><label for="prop-{{property}}">{{title}}</label></div>
		<div class="col-md-7">
			<select class="form-control" id="prop-{{property}}" name="prop-{{property}}">
				{{#select_list}}
					<option {{#active}}selected{{/active}}>{{option}}</option>
				{{/select_list}}
			</select>
		</div>
		<div class="col-md-2">
			{{#helptext}}
				<p class="btn btn-static" title="{{helptext}}">
					<span class="glyphicon glyphicon-question-sign"></span>
				</p>
			{{/helptext}}
		</div>
	</div>
</div>