moviewyrm/bookwyrm/templates/feed/direct_messages.html

20 lines
472 B
HTML
Raw Normal View History

2021-01-29 18:25:31 +00:00
{% extends 'feed/feed_layout.html' %}
{% block panel %}
2020-12-14 00:16:12 +00:00
<div class="block">
<h1 class="title">Direct Messages</h1>
{% if not activities %}
<p>You have no messages right now.</p>
{% endif %}
{% for activity in activities %}
<div class="block">
{% include 'snippets/status.html' with status=activity %}
</div>
{% endfor %}
{% include 'snippets/pagination.html' with page=activities path="direct-messages" %}
2020-12-14 00:16:12 +00:00
</div>
{% endblock %}