{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Search Documents" %} - {% trans "Reference Section" %}{% endblock %} {% block content %}

{% trans "Search Documents" %}

{% trans "Back to Dashboard" %}
{% trans "Filter Documents" %}
{{ form.search }}
{{ form.folder }}
{{ form.file_type }}
{{ form.tags }}
{% trans "Clear" %}
{% trans "Results" %} {% if page_obj %} {{ page_obj.paginator.count }} {% endif %}
{% if documents %}
{% for document in documents %} {% endfor %}
{% trans "Name" %} {% trans "Folder" %} {% trans "Type" %} {% trans "Size" %} {% trans "Version" %} {% trans "Downloads" %} {% trans "Modified" %}
{{ document.title }} {% if document.description %}
{{ document.description|truncatechars:50 }} {% endif %}
{% if document.folder %} {{ document.folder.name }} {% else %} - {% endif %} {{ document.file_type|upper }} {{ document.get_file_size_display }} {% if document.is_latest_version %} {{ document.version }} {% else %} {{ document.version }} {% endif %} {{ document.download_count }} {{ document.updated_at|date:"M d, Y" }}
{% if page_obj.has_other_pages %} {% endif %} {% else %}

{% trans "No documents found matching your search criteria" %}

{% trans "Clear Filters" %}
{% endif %}
{% endblock %}