PATH:
home
/
letacommog
/
letaweb
/
admin
/
modules
/
progress_bar
<div class="block"> <tabset> <tab heading="<?php $this->t('LBL_PROGRESSES'); ?>"> <ul class="form_builder_block list"> <li ng-repeat="progress in data.progresses"> <div class="header"> <span><input type="text" class="name" ng-change="changeLabel($index)" ng-model="progress.label" /></span> <button class="btn btn-small" ng-click="deleteProgress($index)"><i class="fa fa-trash"></i></button> <button class="btn btn-small" ng-click="editProgress($index)"><span ng-if="!progress.edit_mode"><i class="fa fa-pencil"></i></span></button> </div> <div class="edit_block" ng-hide="!progress.edit_mode"> <div class="form-group"> <div class="controls"><?php $this->t('LBL_VALUE'); ?></div> <input type="number" min="0" max="100" ng-model="progress.value" ng-change="changeValue($index)" class="form-control" /> </div> </div> </li> </ul> <div class="form-group"> <button class="btn btn-primary" ng-click="addProgress()"><i class="fa fa-plus"></i></button> </div> </tab> <?php include 'extra/design_tab.php'; ?> <?php include 'extra/animate_tab.php'; ?> </tabset> </div>
[+]
..
[-] backend.js
[edit]
[-] frontend_class.php
[edit]
[-] frontend_view.php
[edit]
[-] backend.php
[edit]