{% extends "layout.html" %} {% set current_page = "search" %} {% set title = "OD-Database - Search" %} {% block body %}
Search
{# Query #}
{# Sort order #}
{# Results per page #}
{# Filters #} Filters
{# File extension #}
.
{# Size #}
{% if results and results["hits"]["total"] > 0 %}
{{ results["hits"]["total"] }} result(s) in {{ results["took"] }}ms
{% 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 %}
{% set category = get_mime(src["ext"]) %} {% set url = src["website_url"] + src["path"] + "/" + src["name"] + ("." if src["ext"] != "" else "") + src["ext"] %} {# Preview #} {% if category == "image" %} {% endif %} {# File name & link #} {{ hl_name |safe }}{{ ("." if src["ext"] != "" else "") + src["ext"] }} {# File type badge #} {% if category %} {{ src["ext"] }} {% 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 %}