order_history.twig (1017B)
1 <div class="table-responsive"> 2 <table class="table table-bordered"> 3 <thead> 4 <tr> 5 <td class="text-left">{{ column_date_added }}</td> 6 <td class="text-left">{{ column_comment }}</td> 7 <td class="text-left">{{ column_status }}</td> 8 <td class="text-left">{{ column_notify }}</td> 9 </tr> 10 </thead> 11 <tbody> 12 {% if histories %} 13 {% for history in histories %} 14 <tr> 15 <td class="text-left">{{ history.date_added }}</td> 16 <td class="text-left">{{ history.comment }}</td> 17 <td class="text-left">{{ history.status }}</td> 18 <td class="text-left">{{ history.notify }}</td> 19 </tr> 20 {% endfor %} 21 {% else %} 22 <tr> 23 <td class="text-center" colspan="4">{{ text_no_results }}</td> 24 </tr> 25 {% endif %} 26 </tbody> 27 </table> 28 </div> 29 <div class="row"> 30 <div class="col-sm-6 text-left">{{ pagination }}</div> 31 <div class="col-sm-6 text-right">{{ results }}</div> 32 </div>