{% extends "app/base.html" %} {% comment %} SPDX-FileCopyrightText: 2024 - Nils Brinckmann - Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences (GFZ, https://www.gfz-potsdam.de) SPDX-License-Identifier: EUPL-1.2 {% endcomment %} {% load app_extras %} {% block breadcrumb %} Home {{ model_name_plural }} {% endblock breadcrumb %} {% block content %} Search in terms {% if meta.pagination.pages > 1 %} {% if links.prev %} Previous {% else %} Previous {% endif %} {% with ''|center:meta.pagination.pages as range %} {% for i in range %} {% if forloop.counter == meta.pagination.page %} {% else %} {% endif %} {{ forloop.counter }} {% endfor %} {% endwith %} {% if links.next %} Next {% else %} Next {% endif %} {% endif %} Term Definition Status {% for result in results %} {{ result.term }} {{ result.definition | default:'-' }} {{ result.status }} {% endfor %} {% if not results %} There are no matching terms. {% endif %} {% if meta.pagination.pages > 1 %} {% if links.prev %} Previous {% else %} Previous {% endif %} {% with ''|center:meta.pagination.pages as range %} {% for i in range %} {% if forloop.counter == meta.pagination.page %} {% else %} {% endif %} {{ forloop.counter }} {% endfor %} {% endwith %} {% if links.next %} Next {% else %} Next {% endif %} {% endif %} {% endblock content %}