{% extends "layout.html" %} {% import 'utils.html' as utils %} {% block header %} {% endblock %} {% block content %}
{% include "header.html" %}
{% for item in outbox_data %} {% if item.type == 'Announce' %} {% set boost_actor = item.activity.actor | get_actor %}

{{ boost_actor.name }} boosted

{% if item.ref %} {{ utils.display_note(item.ref, ui=False) }} {% endif %} {% elif item.type == 'Create' %} {{ utils.display_note(item) }} {% endif %} {% endfor %}
{% endblock %}