1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
<modal-dialog>
<div class="modal-header">
<h3 class="modal-title" translate>Adjust Replication Controller {{ item.metadata.name }}</h3>
</div>
<div class="modal-body">
<table class="form-table-ct">
<tr class="adjust-replicas-header">
<td class="top"><label class="control-label" translate>Replicas</label></td>
<td>
<input class="form-control adjust-replica" type="text" id="replicas" ng-model="fields.replicas">
</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())">Change</button>
</div>
</modal-dialog>
|