theme_history.twig (1536B)
1 <div class="table-responsive"> 2 <table class="table table-bordered"> 3 <thead> 4 <tr> 5 <td class="text-left">{{ column_store }}</td> 6 <td class="text-left">{{ column_route }}</td> 7 <td class="text-left">{{ column_theme }}</td> 8 <td class="text-left">{{ column_date_added }}</td> 9 <td class="text-right">{{ column_action }}</td> 10 </tr> 11 </thead> 12 <tbody> 13 {% if histories %} 14 {% for history in histories %} 15 <tr> 16 <td class="text-left">{{ history.store }} 17 <input type="hidden" name="store_id" value="{{ history.store_id }}" /></td> 18 <td class="text-left">{{ history.route }} 19 <input type="hidden" name="path" value="{{ history.route }}" /></td> 20 <td class="text-left">{{ history.theme }}</td> 21 <td class="text-left">{{ history.date_added }}</td> 22 <td class="text-right"><a href="{{ history.edit }}" data-toggle="tooltip" title="{{ button_edit }}" class="btn btn-primary"><i class="fa fa-pencil"></i></a> <a href="{{ history.delete }}" data-loading-text="{{ text_loading }}" data-toggle="tooltip" title="{{ button_delete }}" class="btn btn-danger"><i class="fa fa fa-trash-o"></i></a></td> 23 </tr> 24 {% endfor %} 25 {% else %} 26 <tr> 27 <td class="text-center" colspan="5">{{ text_no_results }}</td> 28 </tr> 29 {% endif %} 30 </tbody> 31 </table> 32 </div> 33 <div class="row"> 34 <div class="col-sm-6 text-left">{{ pagination }}</div> 35 <div class="col-sm-6 text-right">{{ results }}</div> 36 </div>