PATH:
home
/
letacommog
/
letaweb
/
admin
/
views
/
builder
/
ecommerce
/
configuration
/
zone
<div> <div class="form-group"> <label><?php $this->t('LBL_ZONES_NAME'); ?></label> <input type="text" ng-model="data.name" class="form-control required" maxlength="255"/> </div> <div class="form-group"> <label><?php $this->t('LBL_ZONES_ZIP_CODE'); ?></label> <input type="text" name="zip_code" class="form-control"/> </div> <div class="form-group"> <div class="col-md-4"> <button class="btn btn-primary font-plus" ng-click="addCountry(data)"></button> <table class="table table-bordered"> <thead> <tr> <th><?php $this->t('LBL_ZONE_COUNTRIES'); ?></th> <th></th> </tr> </thead> <tbody> <tr ng-repeat="country in data.countries"> <td>{{country.name}}</td> <td><button class="btn btn-primary font-trash" ng-click="deleteCountry(data, $index)"></button></td> </tr> </tbody> </table> </div> <div class="col-md-4"> <button class="btn btn-primary font-plus" ng-click="addState(data)"></button> <table class="table table-bordered"> <thead> <tr> <th><?php $this->t('LBL_ZONE_STATES'); ?></th> <th></th> </tr> </thead> <tbody> <tr ng-repeat="state in data.states"> <td>{{state.name}}</td> <td><button class="btn btn-primary font-trash" ng-click="deleteState(data, $index)"></button></td> </tr> </tbody> </table> </div> <div class="col-md-4"> <button class="btn btn-primary font-plus" ng-click="addCity(data)"></button> <table class="table table-bordered"> <thead> <tr> <th><?php $this->t('LBL_ZONE_CITIES'); ?></th> <th></th> </tr> </thead> <tbody> <tr ng-repeat="city in data.cities"> <td>{{city.name}}</td> <td><button class="btn btn-primary font-trash" ng-click="deleteCity(data, $index)"></button></td> </tr> </tbody> </table> </div> </div> </div>
[+]
..
[-] edit.php
[edit]