Current Path : /var/www/alh/upload/admin/view/template/extension/total/ |
Current File : /var/www/alh/upload/admin/view/template/extension/total/handling.twig |
{{ header }}{{ column_left }} <div id="content"> <div class="page-header"> <div class="container-fluid"> <div class="pull-right"> <button type="submit" form="form-total" data-toggle="tooltip" title="{{ button_save }}" class="btn btn-primary"><i class="fa fa-save"></i></button> <a href="{{ cancel }}" data-toggle="tooltip" title="{{ button_cancel }}" class="btn btn-default"><i class="fa fa-reply"></i></a></div> <h1>{{ heading_title }}</h1> <ul class="breadcrumb"> {% for breadcrumb in breadcrumbs %} <li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li> {% endfor %} </ul> </div> </div> <div class="container-fluid"> {% if error_warning %} <div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> {{ error_warning }} <button type="button" class="close" data-dismiss="alert">×</button> </div> {% endif %} <div class="panel panel-default"> <div class="panel-heading"> <h3 class="panel-title"><i class="fa fa-pencil"></i> {{ text_edit }}</h3> </div> <div class="panel-body"> <form action="{{ action }}" method="post" enctype="multipart/form-data" id="form-total" class="form-horizontal"> <div class="form-group"> <label class="col-sm-2 control-label" for="input-total"><span data-toggle="tooltip" title="{{ help_total }}">{{ entry_total }}</span></label> <div class="col-sm-10"> <input type="text" name="total_handling_total" value="{{ total_handling_total }}" placeholder="{{ entry_total }}" id="input-total" class="form-control" /> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-fee">{{ entry_fee }}</label> <div class="col-sm-10"> <input type="text" name="total_handling_fee" value="{{ total_handling_fee }}" placeholder="{{ entry_fee }}" id="input-fee" class="form-control" /> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-tax-class">{{ entry_tax_class }}</label> <div class="col-sm-10"> <select name="total_handling_tax_class_id" id="input-tax-class" class="form-control"> <option value="0">{{ text_none }}</option> {% for tax_class in tax_classes %} {% if tax_class.tax_class_id == total_handling_tax_class_id %} <option value="{{ tax_class.tax_class_id }}" selected="selected">{{ tax_class.title }}</option> {% else %} <option value="{{ tax_class.tax_class_id }}">{{ tax_class.title }}</option> {% endif %} {% endfor %} </select> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-status">{{ entry_status }}</label> <div class="col-sm-10"> <select name="total_handling_status" id="input-status" class="form-control"> {% if total_handling_status %} <option value="1" selected="selected">{{ text_enabled }}</option> <option value="0">{{ text_disabled }}</option> {% else %} <option value="1">{{ text_enabled }}</option> <option value="0" selected="selected">{{ text_disabled }}</option> {% endif %} </select> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-sort-order">{{ entry_sort_order }}</label> <div class="col-sm-10"> <input type="text" name="total_handling_sort_order" value="{{ total_handling_sort_order }}" placeholder="{{ entry_sort_order }}" id="input-sort-order" class="form-control" /> </div> </div> </form> </div> </div> </div> </div> {{ footer }}