mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 21:53:12 +02:00
35 lines
No EOL
1.3 KiB
Text
35 lines
No EOL
1.3 KiB
Text
<!--#include virtual="header.html"-->
|
|
<div id="settings-lead" class="table-lead"><h3>Settings</h3><div class="lead-line"></div></div>
|
|
<div style="clear: both;"></div>
|
|
<div class="alert" style="display:none;"></div>
|
|
<form class="form-horizontal" id="settings-form" role="form">
|
|
|
|
<script id="template" type="text/x-handlebars-template">
|
|
{{#each .}}
|
|
{{setKey @key}}
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">{{label}}</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
{{#each settings}}
|
|
<div class="form-group">
|
|
<label for="{{../key}}.{{@key}}" class="col-sm-2 control-label">{{label}}</label>
|
|
<div class="col-sm-10"><input type="text" class="form-control" id="{{../key}}.{{@key}}" placeholder="{{placeholder}}"></div>
|
|
<p class="help-block col-sm-offset-2 col-sm-10">{{help}}</p>
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
</div>
|
|
{{/each}}
|
|
<button type="submit" class="btn btn-default">Save</button>
|
|
</script>
|
|
|
|
<div id="settings"></div>
|
|
</form>
|
|
|
|
<!--#include virtual="footer.html"-->
|
|
<script src='/js/settings.js'></script>
|
|
<script src='/js/form2js.min.js'></script>
|
|
<script src='/js/handlebars-v1.3.0.min.js'></script>
|
|
<!--#include virtual="page-end.html"--> |