{% load static %} {% block title %}ClientPortal{% endblock %} {% block extra_css %}{% endblock %}
{% block topbar_title %}Dashboard{% endblock %}
Notifications
{% for n in portal_recent_notifications %}
{{ n.title }}
{{ n.message|default:"No details" }}
{{ n.created_at|date:"d M, H:i" }}
{% if n.link %}Open{% endif %} {% if not n.is_read %} {% endif %}
{% empty %}
No notifications yet.
{% endfor %}
{% now "l, j F Y" %}
{% if messages %}
    {% for message in messages %}
  • {{ message }}
  • {% endfor %}
{% endif %} {% block content %}{% endblock %}
{% csrf_token %} {% block extra_js %}{% endblock %}