1
0
mirror of https://git.sr.ht/~tsileo/microblog.pub synced 2025-06-05 21:59:23 +02:00

Template fixes

This commit is contained in:
Thomas Sileo
2022-07-21 21:56:59 +02:00
parent dbbfe4f788
commit a95dee9ef0
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
{% 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 }}</a> {{ text }}
<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>