summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/templates/server-prop-dropdown.html
blob: bcb0cd5afb8c7c358653898a5c5b1c67f4e911e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="list-group-item">
	<div class="row">
		<div class="col-md-4"><label for="prop-{{property}}">{{title}}</label></div>
		<div class="col-md-8">
			<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-sm-12 small text-muted spacebottop">
			{{helptext}}
		</div>
	</div>
</div>