forked from mirrors/bookwyrm
4538a60490
Fixes #68
40 lines
973 B
HTML
40 lines
973 B
HTML
{% extends 'layout.html' %}
|
|
{% load fr_display %}
|
|
{% block content %}
|
|
|
|
{% include 'snippets/covers_shelf.html' with shelves=shelves user=request.user %}
|
|
|
|
|
|
<div id="feed">
|
|
<div class="content-container tabs">
|
|
{% include 'snippets/tabs.html' with tabs=feed_tabs active_tab=active_tab %}
|
|
</div>
|
|
|
|
{% for activity in activities %}
|
|
<div class="content-container">
|
|
{% include 'snippets/status.html' with status=activity %}
|
|
</div>
|
|
{% endfor %}
|
|
|
|
<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>
|
|
</div>
|
|
|
|
{% endblock %}
|