{% set detail = json.loads(notification.detail) %} {% if notification.type == 'follow' %} {% set user = User[detail['user']] %}
{{ user.username }} started following you.
{% elif notification.type == 'mention' %} {% set user = User[detail['user']] %}{{ user.username }} mentioned you in a message.
{% else %}Unknown Notification
{% endif %} {{ notification.pub_date | human_date }}