{% extends 'layout.html' %} {% load i18n %} {% load humanize %} {% load bookwyrm_tags %} {% block content %}
{# 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' %} {% blocktrans with preview_name=related_status|status_preview_name|safe related_path=related_status.local_path %}favorited your {{ preview_name }}{% endblocktrans %} {% elif notification.notification_type == 'MENTION' %} {% blocktrans with preview_name=related_status|status_preview_name|safe related_path=related_status.local_path %}mentioned you in a {{ preview_name }}{% endblocktrans %} {% elif notification.notification_type == 'REPLY' %} {% blocktrans with preview_name=related_status|status_preview_name|safe related_path=related_status.local_path parent_path=related_status.reply_parent.local_path %}replied to your {{ preview_name }}{% endblocktrans %} {% elif notification.notification_type == 'FOLLOW' %} {% trans "followed you" %} {% include 'snippets/follow_button.html' with user=notification.related_user %} {% elif notification.notification_type == 'FOLLOW_REQUEST' %} {% trans "sent you a follow request" %}
{% trans "You're all caught up!" %}
{% endif %}