{% extends "base.html" %} {% block title %}Search Archives{% endblock %} {% block content %}

Search Results

{% if query %} {% if results %}

Results for "{{ query }}"

{{ results|length }} files
{% for file in results %}
{{ file.category }} / {{ file.channel }}

Server ID: {{ file.server_id }}

Created: {{ file.date_created }}
{{ file.format }} {{ (file.size / 1024)|round(1) }} KB Download
{% endfor %}
{% else %}

No results found

No archive files matched your search query "{{ query }}".

Try a different search term or browse all servers.

{% endif %} {% else %}

Enter a search query

Use the search box above to find archives by server, channel, or date.

{% endif %} {% endblock %}