{% extends "base.html" %} {% block title %} Notifications {% endblock %} {% block content %} {% if current_user.notifications %}
{% endif %}

Notifications

{% for n in current_user.notifications %}
{% if n.package %}
{{ n.package.title }}
{% endif %}
{{ n.title}}
{{ n.causer.display_name }}
{% else %}

No notifications

{% endfor %} {% endblock %}