{% extends "base.html" %} {% load partials static %} {% load custom_filters %} {% block content %}

Files

Manage your uploaded files and their processing status

Upload New File

{% csrf_token %} {{ form.file.errors }}

Uploaded Files

{% for file in files %} {% empty %} {% endfor %}
Name Ingest Label Status Upload Date Actions
{{ file.name }} {{ file.ingest_label }}
{{ file.status }}
{{ file.created_at|date:"Y-m-d H:i" }}
Download {% if file.metadata %} {% endif %}
No files uploaded yet
{% if files %}
{% if page > 1 %} « {% endif %} {% for p in total_pages|get_range %} {% with p_num=forloop.counter %} {{ p_num }} {% endwith %} {% endfor %} {% if page < total_pages %} » {% endif %}
{% endif %}
{% endblock %}