forked from mirrors/bookwyrm
75 lines
2.3 KiB
HTML
75 lines
2.3 KiB
HTML
{% extends 'feed/layout.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block panel %}
|
|
|
|
<h1 class="title">
|
|
{{ tab.name }}
|
|
</h1>
|
|
|
|
<div class="tabs">
|
|
<ul>
|
|
{% for stream in streams %}
|
|
<li class="{% if tab.key == stream.key %}is-active{% endif %}"{% if tab.key == stream.key %} aria-current="page"{% endif %}>
|
|
<a href="/{{ stream.key }}#feed">{{ stream.shortname }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
|
|
{# feed settings #}
|
|
{% with "/"|add:tab.key|add:"#feed" as action %}
|
|
{% include 'feed/feed_filters.html' with size="small" method="post" action=action %}
|
|
{% endwith %}
|
|
|
|
{# announcements and system messages #}
|
|
{% if not activities.number > 1 %}
|
|
<a
|
|
href="{{ request.path }}"
|
|
class="transition-y is-hidden notification is-primary is-block"
|
|
data-poll-wrapper
|
|
>
|
|
<span data-poll="stream/{{ tab.key }}"></span>
|
|
</a>
|
|
|
|
{% if request.user.show_goal and not goal and tab.key == 'home' %}
|
|
{% now 'Y' as year %}
|
|
<section class="block">
|
|
{% include 'feed/goal_card.html' with year=year %}
|
|
<hr>
|
|
</section>
|
|
{% endif %}
|
|
|
|
{% if annual_summary_year and tab.key == 'home' %}
|
|
<section class="block is-hidden" data-hide="hide_annual_summary_{{ annual_summary_year }}">
|
|
{% include 'feed/summary_card.html' with year=annual_summary_year %}
|
|
<hr>
|
|
</section>
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{# activity feed #}
|
|
{% if not activities %}
|
|
<div class="block content">
|
|
<p>{% trans "There aren't any activities right now! Try following a user to get started" %}</p>
|
|
<p>{% if user.feed_status_types|length < 4 %}{% trans "Alternatively, you can try enabling more status types" %}{% endif %}</p>
|
|
|
|
{% if request.user.show_suggested_users and suggested_users %}
|
|
{# suggested users for when things are very lonely #}
|
|
{% include 'feed/suggested_users.html' with suggested_users=suggested_users %}
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% for activity in activities %}
|
|
|
|
{% if request.user.show_suggested_users and not activities.number > 1 and forloop.counter0 == 2 and suggested_users %}
|
|
{# suggested users on the first page, two statuses down #}
|
|
{% include 'feed/suggested_users.html' with suggested_users=suggested_users %}
|
|
{% endif %}
|
|
<div class="block">
|
|
{% include 'snippets/status/status.html' with status=activity %}
|
|
</div>
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|