| OLD | NEW |
| 1 <table id="{{tb_value.table_id}}" class="info" style="display:none;"> | 1 <table id="{{tb_value.table_id}}" class="info" 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}}" 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> |
| 12 </thead> | 12 </thead> |
| 13 {% for block in tb_value.table_row_blocks -%} | 13 {% for block in tb_value.table_row_blocks -%} |
| 14 <tbody class="row_block"> | 14 <tbody class="row_block"> |
| 15 {% for row in block -%} | 15 {% for row in block -%} |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 {%- elif cell.cell_type == 'action' -%} | 48 {%- elif cell.cell_type == 'action' -%} |
| 49 <a onclick="{{cell.action}}">{{cell.data}}</a> | 49 <a onclick="{{cell.action}}">{{cell.data}}</a> |
| 50 {%- else -%} | 50 {%- else -%} |
| 51 <b>{{cell.data}}</b> | 51 <b>{{cell.data}}</b> |
| 52 {%- endif %} | 52 {%- endif %} |
| 53 </td> | 53 </td> |
| 54 {%- endfor %} | 54 {%- endfor %} |
| 55 </tr> | 55 </tr> |
| 56 </tfoot> | 56 </tfoot> |
| 57 </table> | 57 </table> |
| OLD | NEW |