{% load static tasks_tags %} {% block title %}Staff Panel{% endblock %} {% block extra_css %}{% endblock %}
{% block topbar_title %}Dashboard{% endblock %}
Notifications View all
{% for n in staff_recent_notifications %}
{{ n.title }}
{{ n.message|default:"No details" }}
{{ n.created_at|date:"d M, H:i" }}
Open {% if not n.is_read %} {% endif %}
{% empty %}
No notifications yet.
{% endfor %}
{% block topbar_actions %}{% endblock %}
{% if messages %}
    {% for message in messages %}
  • {{ message }}
  • {% endfor %}
{% endif %} {% block content %}{% endblock %}
Confirm Archive
Are you sure you want to archive ? This item will be hidden but not permanently deleted.
{% csrf_token %}
{% csrf_token %} {% block extra_js %}{% endblock %}