| OLD | NEW |
| 1 <table id="{{tb_value.table_id}}" class="info" style="display:none;"> | 1 <table id="{{tb_value.table_id}}" style="display:none;"> |
| 2 <thead class="heads"> | 2 <thead class="heads"> |
| 3 <tr> | 3 <tr> |
| 4 {% for cell in tb_value.table_headers -%} | 4 {% for cell in tb_value.table_headers -%} |
| 5 <th class="{{cell.class}}" id="{{cell.data}}" data-asc-sorted=0> | 5 <th class="{{cell.class}}" id="{{cell.data}}" data-asc-sorted=0> |
| 6 {{cell.data}} | 6 {{cell.data}} |
| 7 <span class="up" style="display:none;"> ↑</span> | 7 <span class="up" style="display:none;"> ↑</span> |
| 8 <span class="down" style="display:none;"> ↓</span> | 8 <span class="down" style="display:none;"> ↓</span> |
| 9 </th> | 9 </th> |
| 10 {%- endfor %} | 10 {%- endfor %} |
| 11 </tr> | 11 </tr> |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 {%- elif cell.cell_type == 'action' -%} | 51 {%- elif cell.cell_type == 'action' -%} |
| 52 <a onclick="{{cell.action}}">{{cell.data}}</a> | 52 <a onclick="{{cell.action}}">{{cell.data}}</a> |
| 53 {%- else -%} | 53 {%- else -%} |
| 54 <b>{{cell.data}}</b> | 54 <b>{{cell.data}}</b> |
| 55 {%- endif %} | 55 {%- endif %} |
| 56 </td> | 56 </td> |
| 57 {%- endfor %} | 57 {%- endfor %} |
| 58 </tr> | 58 </tr> |
| 59 </tfoot> | 59 </tfoot> |
| 60 </table> | 60 </table> |
| OLD | NEW |