1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{% extends "base.html" %} {% block title %} Notifications {% endblock %} {% block content %} <ul> {% for n in current_user.notifications %} <li><a href="{{ n.url }}"> {{ n.title}} [{{ n.causer.display_name }}] </a></li> {% else %} <li><i>No notifications</i></ul> {% endfor %} </ul> {% endblock %}