mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-15 13:24:04 +00:00
38 lines
911 B
HTML
38 lines
911 B
HTML
|
{% extends 'layout.html' %}
|
||
|
{% block content %}
|
||
|
|
||
|
<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 %}
|
||
|
|
||
|
<nav class="pagination" role="navigation" aria-label="pagination">
|
||
|
{% if prev %}
|
||
|
<p class="pagination-previous">
|
||
|
<a href="{{ prev }}">
|
||
|
<span class="icon icon-arrow-left"></span>
|
||
|
Previous
|
||
|
</a>
|
||
|
</p>
|
||
|
{% endif %}
|
||
|
|
||
|
{% if next %}
|
||
|
<p class="pagination-next">
|
||
|
<a href="{{ next }}">
|
||
|
Next
|
||
|
<span class="icon icon-arrow-right"></span>
|
||
|
</a>
|
||
|
</p>
|
||
|
{% endif %}
|
||
|
</nav>
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|