{% extends 'layout.html' %} {% load humanize %} {% load bookwyrm_tags %} {% block content %}

Notifications

{% csrf_token %}
{% for notification in notifications %}

{# DESCRIPTION #} {% if notification.related_user %} {% include 'snippets/avatar.html' with user=notification.related_user %} {% include 'snippets/username.html' with user=notification.related_user %} {% if notification.notification_type == 'FAVORITE' %} favorited your status {% elif notification.notification_type == 'MENTION' %} mentioned you in a status {% elif notification.notification_type == 'REPLY' %} replied to your status {% elif notification.notification_type == 'FOLLOW' %} followed you {% elif notification.notification_type == 'FOLLOW_REQUEST' %} sent you a follow request

{% include 'snippets/follow_request_buttons.html' with user=notification.related_user %}
{% elif notification.notification_type == 'BOOST' %} boosted your status {% endif %} {% else %} your import completed. {% endif %}

{% if notification.related_status %}
{# PREVIEW #}
{{ notification.related_status.published_date | post_date }} {% include 'snippets/privacy-icons.html' with item=notification.related_status %}
{% endif %}
{% endfor %} {% if not notifications %}

You're all caught up!

{% endif %}
{% endblock %}