1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
<modal-dialog>
<div class="modal-header">
<h4 class="modal-title" translate>Change User</h4>
</div>
<div class="modal-body">
<table class="form-table-ct">
<tr>
<td class="top">
<label class="control-label" for="user_name" translate>Name</label>
</td>
<td>
<span id="user_name">{{ fields.user.metadata.name }}</span>
</td>
</tr>
<tr>
<td class="top">
<label class="control-label" for="identities" translate>Identity</label>
</td>
<td>
<input id="identities" ng-model="fields.identities" class="form-control" type="text">
</td>
</tr>
</table>
</div>
<div class="modal-footer">
<button class="btn btn-default btn-cancel" translate>Cancel</button>
<button class="btn btn-primary" translate ng-click="complete(performModify(fields.user))">Modify</button>
</div>
</modal-dialog>
|