{% set table_short %}{{ "submission" if table == "submissions" }}{{ "journal" if table == "journals" }}{% endset %}
{{ title }}
{% for param, value in params.items() %}
{{ param.title() }}
{{ " OR ".join(value) }}
{% endfor %}
{% set navigation %} Results: {{ offset }}-{{ offset + results|length }} of {{ results_total }} ยท Page {{ (offset // limit) + 1 }}
Prev
New Search
Next
{% endset %} {{ navigation }}
ID
Author
Date
Title
{% if table == "submissions" %}
Tags
{% endif %}
{% for item in results %}
{{ item[indexes["ID"]] }}
{{ item[indexes["AUTHOR"]] }}
{{ item[indexes["UDATE"]] }}
{{ item[indexes["TITLE"]] }}
{% if table == "submissions" %}
{{ " ".join(item[indexes["TAGS"]].split(",")) }}
{% endif %}
{% endfor %}