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>
|
|
|
|
|
2021-01-29 19:14:18 +00:00
|
|
|
<div class="box">
|
|
|
|
{% include 'snippets/create_status_form.html' with type="direct" uuid=1 %}
|
2020-12-14 00:16:12 +00:00
|
|
|
</div>
|
|
|
|
|
2021-01-29 19:14:18 +00:00
|
|
|
<section class="block">
|
|
|
|
{% 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" %}
|
|
|
|
</section>
|
2020-12-14 00:16:12 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|