{% extends 'dashboard/layout.html' %} {% block title %}{{ _('Inbox - Dashboard') }}{% endblock %} {% set active_page = 'inbox' %} {% block dashboard_content %}

{{ _('Inbox') }}

{{ _('Notifications from admin actions, blog updates, and more.') }}

{{ total }} {{ _('message') }}{{ 's' if total != 1 }}
{% if msgs %}
{% for m in msgs %}

{{ m.subject }}

{{ m.created_at[:16] if m.created_at else '' }}

{{ m.event_type.replace('_',' ') }}

{% endfor %}
{% if total_pages > 1 %}
{{ _('Page %(page)s of %(total)s', page=page, total=total_pages) }}
{% if page > 1 %}{{ _('← Prev') }}{% endif %} {% if page < total_pages %}{{ _('Next →') }}{% endif %}
{% endif %} {% else %}

{{ _('Your inbox is empty.') }}

{{ _('Admin actions and notifications will appear here.') }}

{% endif %}
{% endblock %}