{% extends "base.html" %} {% block title %}Repository Browser - NoteParser{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Repository Browser

Browse and manage your processed documents

{{ stats.total_files }}
Total Files
{{ stats.processed_files }}
Processed
{{ stats.pending_files }}
Pending
{{ (stats.total_size / 1024 / 1024) | round(2) }} MB
Total Size

Files

Upload New
{% for file in files %}
{{ file.filename }}
{{ file.path }}
{{ file.status.title() }} {{ (file.size / 1024) | round(1) }} KB {{ file.modified_at.strftime('%Y-%m-%d %H:%M') }}
{% if file.status in ['failed', 'pending'] %} {% endif %}
{% else %}
No files found
{% endfor %}
{% if pagination %} {% endif %}
{% endblock %}