Improve notifications page

This commit is contained in:
Thomas Sileo 2022-07-31 15:00:06 +02:00
parent cc18e94a81
commit 2fba922e03
2 changed files with 17 additions and 28 deletions

View file

@ -192,7 +192,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 | clean_html(inbox_object.actor) | safe }}</a> {{ text }}
<span>{{ inbox_object.ap_published_at | timeago }}</span>
<span title="{{ inbox_object.ap_published_at.isoformat() }}">{{ inbox_object.ap_published_at | timeago }}</span>
</div>
{% endmacro %}