File: replicationcontroller-modify.html

package info (click to toggle)
cockpit 188-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 119,768 kB
  • sloc: ansic: 66,833; xml: 5,776; python: 3,122; sh: 2,322; makefile: 1,289; sed: 7
file content (19 lines) | stat: -rw-r--r-- 811 bytes parent folder | download | duplicates (3)
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>