Continue with security update

This commit is contained in:
Admin
2017-03-23 16:36:25 -05:00
parent ddee3a42a9
commit b508a8a16a
12 changed files with 329 additions and 47 deletions

View File

@@ -58,6 +58,8 @@
location.reload();
}
</script>
<button class="btn btn-warning"
type="submit" ng-click="updateSecurity()">Update Security Settings</button>
</p>
<table class="table table-bordered table-striped table-hover">
<thead>
@@ -510,4 +512,20 @@
</tr>
</table>
</div>
</div>
</div>
<script type="text/ng-template" id="securityDialog">
<div class="ngdialog-message">
<h2>Select value</h2>
<p>
<input type="radio" ng-model="valueType" value="percentage" ng-change="changeScale()"> Percentage
<input type="radio" ng-model="valueType" value="raw" ng-change="changeScale()"> Raw
</p>
<p>
<rzslider rz-slider-model="slider.value" rz-slider-options="slider.options"></rzslider>
</p>
</div>
<div class="ngdialog-buttons mt">
<button type="button" class="ngdialog-button ngdialog-button-primary" ng-click="setValue()">Set</button>
</div>
</script>