{% 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 and app.download_enabled %} picture_as_pdf{{"Download PDF"|trans}} {% 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"|trans}} {{current_page}} of {{total_pages}} - {%endif%}{{"Total Records"|trans}}: {{total_records}}