bookwyrm/fedireads/templates/notifications.html

48 lines
1.7 KiB
HTML
Raw Normal View History

2020-03-07 22:50:29 +00:00
{% extends 'layout.html' %}
{% load humanize %}l
{% block content %}
2020-03-17 01:05:49 +00:00
<div class="content-container">
<h2>Notifications</h2>
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 %}
<button type="submit" class="secondary">Delete notifications</button>
</form>
</div>
<div class="content-container">
{% for notification in notifications %}
<div class="notification{% if notification.id in unread %} unread{% endif %}">
<small class="time-ago">{{ notification.created_date | naturaltime }}</small>
{% include 'snippets/username.html' with user=notification.related_user %}
{% if notification.notification_type == 'FAVORITE' %}
favorited your
<a href="{{ notification.related_status.absolute_id}}">status</a>
{% elif notification.notification_type == 'REPLY' %}
<a href="{{ notification.related_status.absolute_id}}">replied</a>
to your
<a href="{{ notification.related_status.reply_parent.absolute_id}}">status</a>
2020-03-07 22:50:29 +00:00
2020-03-17 01:05:49 +00:00
{% elif notification.notification_type == 'FOLLOW' %}
followed you
2020-03-17 01:05:49 +00:00
{% 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 %}
2020-03-17 01:05:49 +00:00
</div>
{% elif notification.notification_type == 'BOOST' %}
boosted your <a href="{{ notification.related_status.absolute_id}}">status</a>
2020-03-17 01:05:49 +00:00
{% endif %}
2020-03-07 22:50:29 +00:00
</div>
2020-03-17 01:05:49 +00:00
{% endfor %}
{% if not notifications %}
<p>You're all caught up!</p>
{% endif %}
2020-03-07 22:50:29 +00:00
</div>
{% endblock %}