summaryrefslogtreecommitdiffstats
path: root/templates/activities/home.html
blob: d574e2a9079821908ad00fa96f531734db9fcfeb (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
{% extends "base.html" %}
{% load activity_tags %}

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

{% block content %}
    {% for event in events %}
        {% 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.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 %}
{% endblock %}