2020-01-25 18:25:19 -05:00
|
|
|
{% extends 'layout.html' %}
|
2020-01-29 18:10:32 -05:00
|
|
|
{% load fr_display %}
|
2020-01-25 18:25:19 -05:00
|
|
|
{% block content %}
|
2020-02-21 18:39:25 -05:00
|
|
|
|
2020-09-29 13:21:10 -04:00
|
|
|
<div>
|
|
|
|
{% for activity in activities %}
|
|
|
|
<div class="block">
|
|
|
|
{% include 'snippets/status.html' with status=activity %}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2020-01-25 18:25:19 -05:00
|
|
|
|
2020-09-29 17:45:04 -04:00
|
|
|
<nav class="pagination" role="navigation" aria-label="pagination">
|
2020-09-29 13:21:10 -04:00
|
|
|
{% if prev %}
|
2020-09-29 17:45:04 -04:00
|
|
|
<p class="pagination-previous">
|
2020-09-29 13:21:10 -04:00
|
|
|
<a href="{{ prev }}">
|
|
|
|
<span class="icon icon-arrow-left"></span>
|
|
|
|
Previous
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
2020-02-23 17:26:03 -05:00
|
|
|
|
2020-09-29 13:21:10 -04:00
|
|
|
{% if next %}
|
2020-09-29 17:45:04 -04:00
|
|
|
<p class="pagination-next">
|
2020-09-29 13:21:10 -04:00
|
|
|
<a href="{{ next }}">
|
|
|
|
Next
|
|
|
|
<span class="icon icon-arrow-right"></span>
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
2020-09-29 17:45:04 -04:00
|
|
|
</nav>
|
2020-09-29 13:21:10 -04:00
|
|
|
</div>
|
2020-01-25 18:25:19 -05:00
|
|
|
{% endblock %}
|