takahe/templates/activities/home.html

38 lines
1.5 KiB
HTML
Raw Normal View History

2022-11-05 20:17:27 +00:00
{% extends "base.html" %}
{% load activity_tags %}
2022-11-05 20:17:27 +00:00
{% block title %}Home{% endblock %}
{% block content %}
{% if page_obj.number == 1 %}
{% include "_announcements.html" %}
{% endif %}
{% for event in page_obj %}
2022-11-18 00:43:00 +00:00
{% if event.type == "post" %}
{% include "activities/_post.html" with post=event.subject_post %}
{% elif event.type == "boost" %}
<div class="boost-banner">
<a href="{{ event.subject_identity.urls.view }}">
2022-12-15 07:50:54 +00:00
{{ event.subject_identity.html_name_or_handle }}
2022-11-18 00:43:00 +00:00
</a> boosted
<time>
{{ event.subject_post_interaction.published | timedeltashort }} ago
</time>
2022-11-18 00:43:00 +00:00
</div>
{% include "activities/_post.html" with post=event.subject_post %}
{% endif %}
{% empty %}
Nothing to show yet.
{% endfor %}
<div class="pagination">
2022-12-24 17:27:34 +00:00
{% if page_obj.has_previous and not request.htmx %}
<a class="button" href=".?page={{ page_obj.previous_page_number }}">Previous Page</a>
{% endif %}
{% if page_obj.has_next %}
<a class="button" href=".?page={{ page_obj.next_page_number }}" hx-get=".?page={{ page_obj.next_page_number }}" hx-select=".left-column > *:not(.view-options)" hx-target=".pagination" hx-swap="outerHTML" {% if config_identity.infinite_scroll %}hx-trigger="revealed"{% endif %}>Next Page</a>
{% endif %}
</div>
2022-11-05 20:17:27 +00:00
{% endblock %}