summaryrefslogtreecommitdiffstats
path: root/templates/activities/home.html
blob: 06fa88ce2e3cc54a7657ecd34cfecae46899efa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends "base.html" %}
{% load activity_tags %}

{% block title %}Home{% endblock %}

{% block content %}
    {% for event in page_obj %}
        {% 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 }}">
                    {{ event.subject_identity.html_name_or_handle }}
                </a> boosted
                <time>
                    {{ event.subject_post_interaction.published | timedeltashort }} ago
                </time>
            </div>
            {% include "activities/_post.html" with post=event.subject_post %}
        {% endif %}
    {% empty %}
        Nothing to show yet.
    {% endfor %}

    <div class="pagination">
        {% if page_obj.has_previous %}
            <div class="load-more"><a class="button" href=".?page={{ page_obj.previous_page_number }}">Previous Page</a></div>
        {% endif %}

        {% if page_obj.has_next %}
            <div class="load-more"><a class="button" href=".?page={{ page_obj.next_page_number }}">Next Page</a></div>
        {% endif %}
    </div>
{% endblock %}