{% extends "layout.html" %} {% set current_page = "search" %} {% set title = "OD-Database - Search" %} {% block body %}
Search
{% if results and results["hits"]["total"] > 0 %}
{% for hit in results["hits"]["hits"] %} {% set src = hit["_source"] %} {% set hl_name = hit["highlight"]["name"][0] if "name" in hit["highlight"] else src["name"] %} {% set hl_path = hit["highlight"]["path"][0] if "path" in hit["highlight"] else src["path"] %} {# File size & date #} {% endfor %}
{# File name & link #} {{ hl_name |safe }}{{ ("." if src["ext"] != "" else "") + src["ext"] }} {# File type badge #} {% set mime = get_mime(src["path"]) %} {% if mime %} {{ src["path"][src["path"].rfind(".") + 1:] }} {% endif %} {# File path #}
{{ src["website_url"] }}{{ hl_path|safe }}
{{ src["size"] | filesizeformat if src["size"] >= 0 else "?" }}
{{ src["mtime"] | date_format }}
{% if results["hits"]["total"] > (p + 1) * per_page %} Next {% endif %} {% if p > 0 %} Previous {% endif %}
{% else %}
No results
{% endif %}
{% endblock body %}