{% extends "common/base.html" %} {% from "components/header.html" import header %} {% block title %}Dashboard - DocuPulse{% endblock %} {% block extra_css %} {% endblock %} {% block content %} {{ header( title="Welcome back, " + current_user.username + "!", description="View your document management overview and statistics", button_text="", button_url="", icon="fa-home" ) }} {% from 'components/storage_overview.html' import storage_overview %} {% from 'components/storage_usage.html' import storage_usage %} {% from 'components/contacts.html' import contacts %} {% from 'components/contact_status.html' import contact_status %} {% from 'components/starred_files.html' import starred_files %} {% from 'components/trash.html' import trash %} {% from 'components/trash_type.html' import trash_type %} {% from 'components/recent_activity.html' import recent_activity %} {% from 'components/conversation_storage.html' import conversation_storage %} {% from 'components/notification_overview.html' import notification_overview %}

Storage Overview

{{ storage_overview(room_count, file_count, folder_count, total_size) }} {{ storage_usage(storage_by_type) }} {{ conversation_storage(conversation_count, message_count, attachment_count, conversation_total_size, recent_conversations) }} {{ trash(trash_count, pending_deletion, oldest_trash_date, trash_size) }} {{ trash_type(trash_by_type) }}

Activity & Statistics

{{ recent_activity(recent_events, is_admin) }} {{ starred_files(starred_count, file_count) }} {{ notification_overview(unread_notifications, recent_notifications) }} {% if current_user.is_admin %} {{ contacts(recent_contacts) }} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}