{% extends "common/base.html" %} {% from 'components/header.html' import header %} {% block title %}Trash - DocuPulse{% endblock %} {% block extra_css %} {% endblock %} {% block content %} {{ header( title="Trash", description="View and manage deleted files. Files in trash will be permanently deleted after 30 days.", button_text="Empty Trash" if current_user.is_admin else "", button_url="#" if current_user.is_admin else "", icon="fa-trash", button_class="btn-danger" if current_user.is_admin else "", button_icon="" ) }}
Files
{% include 'components/search_bar.html' %}
{% include 'components/details_modal.html' %} {% include 'components/permanent_delete_modal.html' %} {% include 'components/empty_trash_modal.html' %} {% endblock %} {% block extra_js %} {% endblock %}