shop.balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

statistics.twig (2221B)


      1 {{ header }}{{ column_left }}
      2 <div id="content">
      3   <div class="page-header">
      4     <div class="container-fluid">
      5       <h1>{{ heading_title }}</h1>
      6       <ul class="breadcrumb">
      7         {% for breadcrumb in breadcrumbs %}
      8         <li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
      9         {% endfor %}
     10       </ul>
     11     </div>
     12   </div>
     13   <div class="container-fluid">{% if error_warning %}
     14     <div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> {{ error_warning }}
     15       <button type="button" class="close" data-dismiss="alert">&times;</button>
     16     </div>
     17     {% endif %}
     18     {% if success %}
     19     <div class="alert alert-success alert-dismissible"><i class="fa fa-check-circle"></i> {{ success }}
     20       <button type="button" class="close" data-dismiss="alert">&times;</button>
     21     </div>
     22     {% endif %}
     23     <div class="panel panel-default">
     24       <div class="panel-heading">
     25         <h3 class="panel-title"><i class="fa fa-list"></i> {{ text_list }}</h3>
     26       </div>
     27       <div class="panel-body">
     28         <div class="table-responsive">
     29           <table class="table table-bordered">
     30             <thead>
     31               <tr>
     32                 <td class="text-left">{{ column_name }}</td>
     33                 <td class="text-right">{{ column_value }}</td>
     34                 <td class="text-right">{{ column_action }}</td>
     35               </tr>
     36             </thead>
     37             <tbody>
     38               {% if statistics %}
     39               {% for statistic in statistics %}
     40               <tr>
     41                 <td class="text-left">{{ statistic.name }}</td>
     42                 <td class="text-right">{{ statistic.value }}</td>
     43                 <td class="text-right"><a href="{{ statistic.href }}" data-toggle="tooltip" title="{{ button_refresh }}" class="btn btn-warning"><i class="fa fa-refresh"></i></a></td>
     44               </tr>
     45               {% endfor %}
     46               {% else %}
     47               <tr>
     48                 <td class="text-center" colspan="3">{{ text_no_results }}</td>
     49               </tr>
     50               {% endif %}
     51             </tbody>
     52           </table>
     53         </div>
     54       </div>
     55     </div>
     56   </div>
     57 </div>
     58 {{ footer }}