{% extends 'base.html' %} {% block title %}Notifications{% endblock %} {% block content %}
{% for n in notifications %}
{{ n.title }} {{ n.created_at|date:"M d, Y H:i" }}

{{ n.message }}

{% if not n.is_read %} Mark as Read {% endif %}
{% empty %}

No notifications

{% endfor %}
{% endblock %}