PATH:
home
/
letacommog
/
letaweb
/
admin
/
views
/
builder
/
ecommerce
/
configuration
/
currency
<div class="form-group"> <label><?php $this->t('LBL_CURRENCIES_NAME'); ?></label> <input type="text" ng-model="data.name" class="field required" maxlength="32"/> </div> <div class="form-group"> <label><?php $this->t('LBL_CURRENCIES_CODE'); ?></label> <input type="text" ng-model="data.code" class="field required" maxlength="3"/> </div> <div class="field form-group"> <label><?php $this->t('LBL_CURRENCIES_SYMBOL_LEFT'); ?></label> <input type="text" ng-model="data.symbol_left" class="field" maxlength="3"/> </div> <div class="form-group"> <label><?php $this->t('LBL_CURRENCIES_SYMBOL_RIGHT'); ?></label> <input type="text" ng-model="data.symbol_right" class="field" maxlength="3"/> </div> <div class="form-group"> <label><?php $this->t('LBL_CURRENCIES_DECIMAL_POINT'); ?></label> <input type="text" ng-model="data.decimal_point" class="field" maxlength="1"/> </div> <div class="form-group"> <label><?php $this->t('LBL_CURRENCIES_THOUSAND_POINT'); ?></label> <input type="text" ng-model="data.thousands_point" class="field" maxlength="1"/> </div> <div class="form-group"> <label><?php $this->t('LBL_CURRENCIES_DECIMAL_PLACES'); ?></label> <input type="text" ng-model="data.decimal_places" number maxlength="1" /> </div> <div class="form-group" ng-hide="data == defaultCurrency"> <label><?php $this->t('LBL_CURRENCIES_VALUE'); ?></label> <input type="text" ng-model="data.value" required number /> = 1 {{defaultCurrency.name}} </div> <div class="form-group"> <label><?php $this->t('LBL_CURRENCIES_DEFAULT_CURRENCY'); ?></label> <input type="checkbox" ng-model="data.default" ng-change="changeDefault(data)" /> </div>
[+]
..
[-] edit.php
[edit]