{% extends 'themes/'~layout_dir~'/layout.html' %} {% block body %}
| Actions | {% for fieldname in list_fields %}{% if app.request.query.get('sort')==fieldname %} arrow_drop_{% if app.request.query.get('order')=='desc' %}up{%else%}down{%endif%} {%endif%}{{app.translator.trans(fieldname)}} | {% endfor %}
|---|---|
| zoom_in {% if edit_enabled is defined and edit_enabled %} mode_edit {% endif %} {% if pdf_download_enabled is defined and pdf_download_enabled %} picture_as_pdfDownload PDF {% endif %} | {% for fieldname in list_fields %}
{% if record[fieldname] is defined %}
{% if fieldname == "imagename" %}
{% for imagename,imagedetails in record["images"][fieldname] %}
{{record[fieldname]|raw}}
{% else %}
{{record[fieldname]|raw}}
{% endif %}
{% endif %}
{% endif %} |
{% endfor %}
{% if not inherited_view and total_pages > 0 %}Showing page {{current_page}} of {{total_pages}} - {%endif%}Total Records: {{total_records}}