summaryrefslogtreecommitdiffstats
path: root/modules-available/usblockoff/templates/server-prop-dropdown.html
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/usblockoff/templates/server-prop-dropdown.html')
-rw-r--r--modules-available/usblockoff/templates/server-prop-dropdown.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/modules-available/usblockoff/templates/server-prop-dropdown.html b/modules-available/usblockoff/templates/server-prop-dropdown.html
new file mode 100644
index 00000000..73a55467
--- /dev/null
+++ b/modules-available/usblockoff/templates/server-prop-dropdown.html
@@ -0,0 +1,25 @@
+<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 form-inline">
+ <select class="form-control" id="prop-{{property}}" name="prop-{{property}}">
+ {{#select_list}}
+ <option value="{{value}}" {{#active}}selected{{/active}}>{{option}}</option>
+ {{/select_list}}
+ </select>
+ {{#toTextButton}}
+ <button type="button" class="btn btn-default switch-input">
+ <span class="glyphicon glyphicon-pencil"></span>
+ </button>
+ {{/toTextButton}}
+
+ </div>
+ <div class="col-md-2">
+ {{#helptext}}
+ <a class="btn btn-default" title="{{helptext}}">
+ <span class="glyphicon glyphicon-question-sign"></span>
+ </a>
+ {{/helptext}}
+ </div>
+ </div>
+</div> \ No newline at end of file