bookwyrm/bookwyrm/templates/feed.html

41 lines
973 B
HTML
Raw Normal View History

2020-01-25 23:25:19 +00:00
{% extends 'layout.html' %}
2020-01-29 23:10:32 +00:00
{% load fr_display %}
2020-01-25 23:25:19 +00:00
{% block content %}
2020-02-21 23:39:25 +00:00
2020-04-01 19:32:24 +00:00
{% include 'snippets/covers_shelf.html' with shelves=shelves user=request.user %}
2020-01-25 23:25:19 +00:00
2020-01-29 01:23:38 +00:00
<div id="feed">
2020-03-15 21:15:36 +00:00
<div class="content-container tabs">
{% include 'snippets/tabs.html' with tabs=feed_tabs active_tab=active_tab %}
2020-03-15 21:15:36 +00:00
</div>
2020-01-29 01:23:38 +00:00
2020-01-28 02:47:54 +00:00
{% for activity in activities %}
2020-03-15 21:15:36 +00:00
<div class="content-container">
{% include 'snippets/status.html' with status=activity %}
</div>
2020-01-28 02:47:54 +00:00
{% endfor %}
2020-04-01 22:36:35 +00:00
<div class="content-container pagination row">
{% if prev %}
<p>
<a href="{{ prev }}">
<span class="icon icon-arrow-left"></span>
Previous
</a>
</p>
{% endif %}
{% if next %}
<p class="next">
<a href="{{ next }}">
Next
<span class="icon icon-arrow-right"></span>
</a>
</p>
{% endif %}
</div>
2020-01-25 23:25:19 +00:00
</div>
2020-01-25 23:25:19 +00:00
{% endblock %}