2022-11-05 13:17:27 -07:00
|
|
|
{% extends "base.html" %}
|
2022-12-04 08:27:42 -08:00
|
|
|
{% load activity_tags %}
|
2022-11-05 13:17:27 -07:00
|
|
|
|
|
|
|
{% block title %}Home{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-11-17 16:43:00 -08:00
|
|
|
{% 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
|
2022-12-04 08:27:42 -08:00
|
|
|
<time>
|
|
|
|
{{ event.subject_post_interaction.published | timedeltashort }} ago
|
|
|
|
</time>
|
2022-11-17 16:43:00 -08:00
|
|
|
</div>
|
|
|
|
{% include "activities/_post.html" with post=event.subject_post %}
|
|
|
|
{% endif %}
|
|
|
|
{% empty %}
|
|
|
|
Nothing to show yet.
|
|
|
|
{% endfor %}
|
2022-11-05 13:17:27 -07:00
|
|
|
{% endblock %}
|