mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 11:46:55 +00:00
66 lines
2.9 KiB
HTML
66 lines
2.9 KiB
HTML
<div class="content-container" ng-controller="EditClientCollateralController">
|
|
<div class="card">
|
|
<div class="content">
|
|
<div class="toolbar">
|
|
<h4>{{ 'label.heading.editcollateral' | translate }}</h4>
|
|
</div>
|
|
<br/>
|
|
<form name="editcollateralform" class="form-horizontal" ng-submit="submit()">
|
|
<api-validate></api-validate>
|
|
<fieldset>
|
|
<div class="form-group">
|
|
<label class="control-label col-sm-2" for="name">{{ 'label.input.name' | translate }}<span
|
|
class="required">*</span></label>
|
|
|
|
<div class="col-sm-3">
|
|
<input id="name" name="name" type="text" class="form-control" ng-model="formData.name" required disabled>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="control-label col-sm-2" for="quantity">{{'label.input.quantity' | translate}}<span
|
|
class="required">*</span></label>
|
|
|
|
<div class="col-sm-3">
|
|
<input id="quantity" name="quantity" type="text" ng-model="formData.quantity" class="form-control" number-format required late-Validate/>
|
|
</div>
|
|
|
|
<div class="col-sm-2">
|
|
<form-validate valattributeform="createcollateralform" valattribute="quantity"/>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="control-label col-sm-2" for="total">{{'label.input.total' | translate}}<span
|
|
class="required">*</span></label>
|
|
|
|
<div class="col-sm-3">
|
|
<input id="total" name="total" type="text" ng-model="formData.total" class="form-control" number-format disabled/>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="control-label col-sm-2" for="totalCollateral">{{'label.input.totalCollateralValue' | translate}}<span
|
|
class="required">*</span></label>
|
|
|
|
<div class="col-sm-3">
|
|
<input id="totalCollateral" name="totalCollateral" type="text" ng-model="formData.totalCollateral" class="form-control" number-format disabled/>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-offset-3">
|
|
<button id="cancel" type="reset" class="btn btn-default" ng-click="cancel()">{{ 'label.button.cancel' | translate
|
|
}}
|
|
</button>
|
|
<button id="save" type="submit" has-permission='CREATE_CLIENT_COLLATERAL' class="btn btn-primary">{{ 'label.button.save' | translate }}</button>
|
|
</div>
|
|
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div> |