Chore: Changed layout to confirm better with the Style Guide
This commit is contained in:
28
brewman/static/app/group/group-detail.html
Normal file
28
brewman/static/app/group/group-detail.html
Normal file
@ -0,0 +1,28 @@
|
||||
<form class="form-horizontal" role=form autocomplete="off">
|
||||
<h2>Group Detail</h2>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="txtName" class="col-md-2 control-label">Name</label>
|
||||
|
||||
<div class="col-md-10">
|
||||
<input type="text" id="txtName" class="form-control" ng-model="group.Name" focus-on="foName"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-md-2 control-label">Permissions</label>
|
||||
|
||||
<div class="col-md-10">
|
||||
<div class="checkbox" ng-repeat="permission in group.Permissions">
|
||||
<label>
|
||||
<input type="checkbox" ng-model="permission.Enabled"> {{permission.Name}}
|
||||
</label>
|
||||
<!--<li ng-repeat="group in user.Groups">{{group}}</li>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="col-md-offset-2 col-md-10">
|
||||
<button ng-click="save()" class="btn btn-primary">Save</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
Reference in New Issue
Block a user