2022-08-11 15:07:40 -05:00
|
|
|
{%- import "utils.html" as utils with context -%}
|
|
|
|
{% extends "layout.html" %}
|
|
|
|
|
|
|
|
{% block head %}
|
|
|
|
<title>{{ local_actor.display_name }} - Direct messages</title>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
{% for anybox_object, convo, actors in threads %}
|
|
|
|
<div class="actor-action">
|
|
|
|
With {% for actor in actors %}
|
2022-08-26 00:43:39 -05:00
|
|
|
<a href="{{ url_for("admin_profile") }}?actor_id={{ actor.ap_id }}">
|
2022-08-26 00:57:10 -05:00
|
|
|
{{ actor.handle }}
|
2022-08-26 00:43:39 -05:00
|
|
|
</a>
|
2022-08-11 15:07:40 -05:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{{ utils.display_object(anybox_object) }}
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|