21 lines
524 B
HTML
21 lines
524 B
HTML
{%- 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 %}
|
|
<a href="{{ url_for("admin_profile") }}?actor_id={{ actor.ap_id }}">
|
|
{{ actor.handle }}
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
{{ utils.display_object(anybox_object) }}
|
|
{% endfor %}
|
|
{% endblock %}
|