2020-01-25 15:25:19 -08:00
|
|
|
{% extends 'layout.html' %}
|
2020-01-29 15:10:32 -08:00
|
|
|
{% load fr_display %}
|
2020-01-25 15:25:19 -08:00
|
|
|
{% block content %}
|
2020-02-21 15:39:25 -08:00
|
|
|
|
2020-09-28 21:08:42 -07:00
|
|
|
<section class="section">
|
|
|
|
<div>
|
2020-09-28 15:57:31 -07:00
|
|
|
{% for activity in activities %}
|
2020-09-28 18:25:05 -07:00
|
|
|
<div class="block">
|
|
|
|
{% include 'snippets/status.html' with status=activity %}
|
2020-09-28 15:57:31 -07:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2020-01-25 15:25:19 -08:00
|
|
|
|
2020-09-28 15:57:31 -07:00
|
|
|
<div class="content-container pagination row">
|
|
|
|
{% if prev %}
|
|
|
|
<p>
|
|
|
|
<a href="{{ prev }}">
|
|
|
|
<span class="icon icon-arrow-left"></span>
|
|
|
|
Previous
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
2020-02-23 14:26:03 -08:00
|
|
|
|
2020-09-28 15:57:31 -07:00
|
|
|
{% if next %}
|
|
|
|
<p class="next">
|
|
|
|
<a href="{{ next }}">
|
|
|
|
Next
|
|
|
|
<span class="icon icon-arrow-right"></span>
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2020-03-15 14:15:36 -07:00
|
|
|
</div>
|
2020-09-28 15:57:31 -07:00
|
|
|
</section>
|
2020-02-23 14:26:03 -08:00
|
|
|
|
2020-01-25 15:25:19 -08:00
|
|
|
{% endblock %}
|