{% extends "base.html" %} {% block title %}Manage Attachments{% endblock %} {% block content %}

Manage Attachments

< Back to Dashboard

Upload New Attachment
File:


Existing Attachments
{% if attachments.is_empty() %}

No attachments found.

{% else %} {% for att in attachments %} {% endfor %}
ID Filename Type Size Created At Actions
{{ att.id }} {{ att.filename }} {{ att.content_type }} {{ att.size }} bytes {{ att.formatted_created_at() }}
{% endif %} {% endblock %}