bookwyrm/bookwyrm/templates/feed/feed.html

86 lines
2.5 KiB
HTML
Raw Normal View History

{% extends 'feed/layout.html' %}
2021-02-28 02:48:10 +00:00
{% load i18n %}
{% load static %}
2021-05-11 22:14:42 +00:00
2021-01-29 18:25:31 +00:00
{% block panel %}
<h1 class="title">
2021-08-05 00:53:44 +00:00
{{ tab.name }}
</h1>
2021-01-29 18:25:31 +00:00
<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>
2021-11-21 23:25:47 +00:00
{# 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>
2021-03-23 19:52:38 +00:00
</a>
2024-01-15 11:52:33 +00:00
{% 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 %}
2021-01-29 18:25:31 +00:00
{% if annual_summary_year and tab.key == 'home' and has_summary_read_throughs %}
<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 %}
2021-01-29 18:25:31 +00:00
{# activity feed #}
{% if not activities %}
<div class="block content">
2021-11-24 10:59:45 +00:00
<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>
2021-09-08 17:02:06 +00:00
{% 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 %}
2021-01-29 18:25:31 +00:00
{% for activity in activities %}
2021-03-26 17:32:42 +00:00
2021-09-08 17:02:06 +00:00
{% if request.user.show_suggested_users and not activities.number > 1 and forloop.counter0 == 2 and suggested_users %}
2021-03-26 17:32:42 +00:00
{# suggested users on the first page, two statuses down #}
{% include 'feed/suggested_users.html' with suggested_users=suggested_users %}
2021-03-26 17:32:42 +00:00
{% endif %}
2021-01-29 18:25:31 +00:00
<div class="block">
{% include 'snippets/status/status.html' with status=activity %}
2021-01-29 18:25:31 +00:00
</div>
{% endfor %}
{% endblock %}
{% block scripts %}
<script src="{% static "js/tabs.js" %}?v={{ js_cache }}"></script>
{% if request.user.show_guided_tour %}
{% include 'guided_tour/home.html' %}
{% endif %}
{% endblock %}