|
38 | 38 | <!-- Name -->
|
39 | 39 | <div class="form-group">
|
40 | 40 | <label for="claim-name" class="required">Name</label>
|
41 |
| - <input |
42 |
| - id="claim-name" |
43 |
| - class="form-control" |
44 |
| - type="text" |
45 |
| - name="name" |
46 |
| - ng-model="claim.name" |
47 |
| - ng-required="true" |
48 |
| - ng-pattern="/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/" |
49 |
| - ng-maxlength="253" |
50 |
| - placeholder="my-storage-claim" |
51 |
| - select-on-focus |
52 |
| - autocorrect="off" |
53 |
| - autocapitalize="off" |
54 |
| - spellcheck="false" |
55 |
| - aria-describedby="claim-name-help"> |
| 41 | + <span ng-class="{ 'has-error': persistentVolumeClaimForm.name.$invalid && persistentVolumeClaimForm.name.$touched && !claimDisabled }"> |
| 42 | + <input |
| 43 | + id="claim-name" |
| 44 | + class="form-control" |
| 45 | + type="text" |
| 46 | + name="name" |
| 47 | + ng-model="claim.name" |
| 48 | + ng-required="true" |
| 49 | + ng-pattern="/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/" |
| 50 | + ng-maxlength="253" |
| 51 | + placeholder="my-storage-claim" |
| 52 | + select-on-focus |
| 53 | + autocorrect="off" |
| 54 | + autocapitalize="off" |
| 55 | + spellcheck="false" |
| 56 | + aria-describedby="claim-name-help"> |
| 57 | + </span> |
56 | 58 | <div>
|
57 | 59 | <span id="claim-name-help" class="help-block">A unique name for the storage claim within the project.</span>
|
58 | 60 | </div>
|
|
92 | 94 | <!-- capacity -->
|
93 | 95 | <div class="form-group">
|
94 | 96 | <fieldset class="form-inline compute-resource">
|
95 |
| - <label class="required">Size</label> |
96 |
| - <div class="resource-size" ng-class="{ 'has-error': form.$invalid }"> |
97 |
| - <div class="resource-amount"> |
98 |
| - <label class="sr-only">Amount</label> |
99 |
| - <input type="number" |
100 |
| - name="amount" |
101 |
| - ng-attr-id="claim-amount" |
102 |
| - ng-model="claim.amount" |
103 |
| - ng-required="true" |
104 |
| - min="0" |
105 |
| - ng-attr-placeholder="10" |
106 |
| - class="form-control" |
107 |
| - ng-attr-aria-describedby="claim-capacity-help"> |
| 97 | + <label class="required">Size</label> |
| 98 | + <div class="resource-size"> |
| 99 | + <div class="resource-amount" ng-class="{ 'has-error': persistentVolumeClaimForm.capacity.$invalid && persistentVolumeClaimForm.capacity.$touched && !claimDisabled }"> |
| 100 | + <label class="sr-only">Amount</label> |
| 101 | + <input type="number" |
| 102 | + name="capacity" |
| 103 | + ng-attr-id="claim-amount" |
| 104 | + ng-model="claim.amount" |
| 105 | + ng-required="true" |
| 106 | + min="0" |
| 107 | + ng-attr-placeholder="10" |
| 108 | + class="form-control" |
| 109 | + ng-attr-aria-describedby="claim-capacity-help"> |
| 110 | + </div> |
| 111 | + <div class="resource-unit"> |
| 112 | + <label class="sr-only" >Unit</label> |
| 113 | + <ui-select search-enabled="false" ng-model="claim.unit" input-id="claim-capacity-unit"> |
| 114 | + <ui-select-match>{{$select.selected.label}}</ui-select-match> |
| 115 | + <ui-select-choices repeat="option.value as option in units" group-by="groupUnits"> |
| 116 | + {{option.label}} |
| 117 | + </ui-select-choices> |
| 118 | + </ui-select> |
| 119 | + </div> |
| 120 | + </div> |
| 121 | + <div id="claim-capacity-help" class="help-block"> |
| 122 | + Desired storage capacity. |
108 | 123 | </div>
|
109 |
| - <div class="resource-unit"> |
110 |
| - <label class="sr-only" >Unit</label> |
111 |
| - <ui-select search-enabled="false" ng-model="claim.unit" input-id="claim-capacity-unit"> |
112 |
| - <ui-select-match>{{$select.selected.label}}</ui-select-match> |
113 |
| - <ui-select-choices repeat="option.value as option in units"> |
114 |
| - {{option.label}} |
115 |
| - </ui-select-choices> |
116 |
| - </ui-select> |
| 124 | + <div class="has-error" ng-show="persistentVolumeClaimForm.capacity.$error.number && persistentVolumeClaimForm.capacity.$touched && !claimDisabled"> |
| 125 | + <span class="help-block"> |
| 126 | + Must be a number. |
| 127 | + </span> |
| 128 | + </div> |
| 129 | + <div class="has-error" ng-show="persistentVolumeClaimForm.capacity.$error.min && persistentVolumeClaimForm.capacity.$touched && !claimDisabled"> |
| 130 | + <span class="help-block"> |
| 131 | + Must be a positive number. |
| 132 | + </span> |
| 133 | + </div> |
| 134 | + <div class="learn-more-block mar-top-sm"> |
| 135 | + <a href="" ng-click="showComputeUnitsHelp()">What are GiB?</a> |
117 | 136 | </div>
|
118 |
| - </div> |
119 |
| - <div id="claim-capacity-help" class="help-block"> |
120 |
| - Desired storage capacity. |
121 |
| - </div> |
122 |
| - <div class="has-error" ng-show="persistentVolumeClaimForm.capacity.$error.pattern && persistentVolumeClaimForm.capacity.$touched && !claimDisabled"> |
123 |
| - <span class="help-block"> |
124 |
| - Must be a positive integer. |
125 |
| - </span> |
126 |
| - </div> |
127 | 137 | </fieldset>
|
128 | 138 | </div>
|
129 | 139 | <!--advanced options-->
|
|
0 commit comments