Twek admin actor profile

This commit is contained in:
Thomas Sileo 2022-07-27 18:56:14 +02:00
parent a006ba2cc4
commit b9d44da06e
3 changed files with 17 additions and 12 deletions

View file

@ -171,6 +171,14 @@
</nav>
{% endmacro %}
{% macro actor_action(inbox_object, text) %}
<div class="actor-action">
<a href="{{ url_for("admin_profile") }}?actor_id={{ inbox_object.actor.ap_id }}">{{ inbox_object.actor.display_name | clean_html(inbox_object.actor) | safe }}</a> {{ text }}
<span>{{ inbox_object.ap_published_at | timeago }}</span>
</div>
{% endmacro %}
{% macro display_actor(actor, actors_metadata={}, embedded=False) %}
{% set metadata = actors_metadata.get(actor.ap_id) %}