{% set table_short %}{{ table[:-1] }}{% endset %}
{{ title }}
New Field
{% for col in columns_table %}
{{ col.title() if col|length > 2 else col.upper() }}
{% endfor %}
+
Sort by
{% for col in columns_table %}
{{ col.upper() }}
{% endfor %}
Order
Ascending
Descending
Search
{% if results or params %}
{% set navigation %} Results: {{ offset }}-{{ offset + results|length }} of {{ results_total }} ยท Page {{ page }}
First
Prev
New Search
= results_total }}> Next
= results_total }}> Last
{% endset %} {{ navigation }}
{% endif %} {% if results %}
{% for column in columns_results %}
{{ column }}
{% endfor %}
{% for item in results %}
{% for column in columns_results %}
{% if column == "AUTHOR" %}
{{ item[column] }}
{% else %}
{{ " ".join(item[column].split(",")) if column in columns_list else item[column] }}
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}