microblog.pub/app/templates/admin_outbox.html

36 lines
1.5 KiB
HTML
Raw Normal View History

2022-06-25 08:23:28 +02:00
{%- import "utils.html" as utils with context -%}
{% extends "layout.html" %}
2022-08-02 20:40:43 +02:00
{% block head %}
<title>{{ local_actor.display_name }} - Outbox</title>
{% endblock %}
2022-06-25 08:23:28 +02:00
{% block content %}
2022-06-28 20:10:25 +02:00
{{ utils.display_box_filters("admin_outbox") }}
2022-06-25 08:23:28 +02:00
{% for outbox_object in outbox %}
{% if outbox_object.ap_type == "Announce" %}
2022-09-29 08:41:24 +02:00
<div class="actor-action">You shared <span title="{{ outbox_object.ap_published_at.isoformat() }}">{{ outbox_object.ap_published_at | timeago }}</span></div>
{{ utils.display_object(outbox_object.relates_to_anybox_object) }}
{% elif outbox_object.ap_type == "Like" %}
2022-09-29 08:41:24 +02:00
<div class="actor-action">You liked <span title="{{ outbox_object.ap_published_at.isoformat() }}">{{ outbox_object.ap_published_at | timeago }}</span></div>
2022-06-25 08:23:28 +02:00
{{ utils.display_object(outbox_object.relates_to_anybox_object) }}
{% elif outbox_object.ap_type == "Follow" %}
2022-09-29 08:41:24 +02:00
<div class="actor-action">You followed <span title="{{ outbox_object.ap_published_at.isoformat() }}">{{ outbox_object.ap_published_at | timeago }}</span></div>
{{ utils.display_actor(outbox_object.relates_to_actor, actors_metadata) }}
{% elif outbox_object.ap_type in ["Article", "Note", "Video", "Question"] %}
2022-06-25 08:23:28 +02:00
{{ utils.display_object(outbox_object) }}
{% endif %}
2022-06-25 08:23:28 +02:00
{% endfor %}
2022-06-28 20:10:25 +02:00
{% if next_cursor %}
2022-07-09 09:33:34 +02:00
<div class="box">
<p><a href="{{ url_for("admin_outbox") }}?cursor={{ next_cursor }}{% if request.query_params.filter_by %}&filter_by={{ request.query_params.filter_by }}{% endif %}">See more</a></p>
</div>
2022-06-28 20:10:25 +02:00
{% endif %}
2022-06-25 08:23:28 +02:00
{% endblock %}