1 <table id="{{ table_id }}" class="table table-light table-striped table-hover"> 2 <thead class="thead-light"> 3 <tr> 4 <th>{% trans %}#{% context %}Number{% endtrans %}</th> 5 <th>{% trans 'Date' %}</th> 6 <th>{% trans 'Username' %}</th> 7 <th>{{ header_message }}</th> 8 <th>{% trans 'Action' %}</th> 9 </tr> 10 </thead> 11 <tbody> 12 {% for entry in entries %} 13 <tr class="noclick"> 14 <td class="right"><small>{{ entry.line_number }}</small></td> 15 <td><small>{{ entry.date }}</small></td> 16 <td><small>{{ entry.username }}</small></td> 17 <td>{{ entry.formated_statement|raw }}</td> 18 <td class="nowrap"> 19 <a class="delete_entry_anchor ajax" href="{{ url('/table/tracking') }}" data-post=" 20 {{- entry.url_params|raw }}"> 21 {{ drop_image_or_text|raw }} 22 </a> 23 </td> 24 </tr> 25 {% endfor %} 26 </tbody> 27 </table>