moviewyrm/bookwyrm/templates/notifications.html

75 lines
3.5 KiB
HTML
Raw Normal View History

2020-03-07 22:50:29 +00:00
{% extends 'layout.html' %}
{% load humanize %}
2020-12-13 02:25:04 +00:00
{% load bookwyrm_tags %}
2020-03-07 22:50:29 +00:00
{% block content %}
2020-09-29 21:45:04 +00:00
<div class="block">
2020-11-09 20:06:44 +00:00
<h1 class="title">Notifications</h1>
2020-03-07 22:50:29 +00:00
2020-03-17 01:05:49 +00:00
<form name="clear" action="/clear-notifications" method="POST">
{% csrf_token %}
2020-11-09 20:10:37 +00:00
<button class="button is-danger is-light" type="submit" class="secondary">Delete notifications</button>
2020-03-17 01:05:49 +00:00
</form>
</div>
2020-09-29 21:45:04 +00:00
<div class="block">
2020-03-17 01:05:49 +00:00
{% for notification in notifications %}
<div class="notification {% if notification.id in unread %} is-primary{% endif %}">
<div class="block">
2020-09-29 21:45:04 +00:00
<p>
{# DESCRIPTION #}
2020-09-29 21:45:04 +00:00
{% 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
2020-12-31 01:36:35 +00:00
<a href="{{ notification.related_status.local_path }}">status</a>
2020-09-29 21:45:04 +00:00
2020-11-01 18:15:56 +00:00
{% elif notification.notification_type == 'MENTION' %}
mentioned you in a
2020-12-31 01:36:35 +00:00
<a href="{{ notification.related_status.local_path }}">status</a>
2020-11-01 18:15:56 +00:00
2020-09-29 21:45:04 +00:00
{% elif notification.notification_type == 'REPLY' %}
2020-12-31 01:36:35 +00:00
<a href="{{ notification.related_status.local_path }}">replied</a>
2020-09-29 21:45:04 +00:00
to your
2020-12-31 01:36:35 +00:00
<a href="{{ notification.related_status.reply_parent.local_path }}">status</a>
2020-09-29 21:45:04 +00:00
{% elif notification.notification_type == 'FOLLOW' %}
followed you
{% elif notification.notification_type == 'FOLLOW_REQUEST' %}
sent you a follow request
<div class="row shrink">
{% include 'snippets/follow_request_buttons.html' with user=notification.related_user %}
</div>
{% elif notification.notification_type == 'BOOST' %}
2020-12-31 01:36:35 +00:00
boosted your <a href="{{ notification.related_status.local_path }}">status</a>
2020-09-29 21:45:04 +00:00
{% endif %}
{% else %}
2020-11-11 05:34:26 +00:00
your <a href="/import-status/{{ notification.related_import.id }}">import</a> completed.
2020-09-29 21:45:04 +00:00
{% endif %}
</p>
</div>
{% if notification.related_status %}
<div class="block">
{# PREVIEW #}
<div class="notification py-2 {% if notification.id in unread %}is-primary is-light{% else %}has-background-white{% if notification.notification_type == 'REPLY' or notification.notification_type == 'MENTION' %} has-text-black{% else %}-bis has-text-grey-dark{% endif %}{% endif %}">
<div class="columns">
<div class="column">
2020-12-31 01:36:35 +00:00
<a href="{{ notification.related_status.local_path }}">{{ notification.related_status.content | safe | truncatewords_html:10 }}</a>
</div>
<div class="column is-narrow {% if notification.notification_type == 'REPLY' or notification.notification_type == 'MENTION' %}has-text-black{% else %}has-text-grey-dark{% endif %}">
{{ notification.related_status.published_date | post_date }}
{% include 'snippets/privacy-icons.html' with item=notification.related_status %}
</div>
</div>
</div>
</div>
{% endif %}
2020-03-07 22:50:29 +00:00
</div>
2020-03-17 01:05:49 +00:00
{% endfor %}
2020-03-17 01:05:49 +00:00
{% if not notifications %}
<p>You're all caught up!</p>
{% endif %}
2020-03-07 22:50:29 +00:00
</div>
{% endblock %}