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 }} - Inbox</title>
|
|
|
|
{% endblock %}
|
|
|
|
|
2022-06-25 08:23:28 +02:00
|
|
|
{% block content %}
|
|
|
|
|
2022-07-07 20:37:16 +02:00
|
|
|
{% if show_filters %}
|
2022-06-28 20:10:25 +02:00
|
|
|
{{ utils.display_box_filters("admin_inbox") }}
|
2022-07-07 20:37:16 +02:00
|
|
|
{% endif %}
|
2022-06-28 20:10:25 +02:00
|
|
|
|
2022-07-14 20:05:36 +02:00
|
|
|
{% if not inbox %}
|
|
|
|
<div class="box">
|
|
|
|
<p>Nothing to see yet, <a href="{{ url_for("get_lookup") }}">start following people in the lookup section</a>.</p>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2022-07-03 22:01:47 +02:00
|
|
|
|
2022-06-25 08:23:28 +02:00
|
|
|
{% for inbox_object in inbox %}
|
|
|
|
{% if inbox_object.ap_type == "Announce" %}
|
2022-08-26 07:57:10 +02:00
|
|
|
{{ utils.actor_action(inbox_object, "shared", with_icon=True) }}
|
2022-06-25 08:23:28 +02:00
|
|
|
{{ utils.display_object(inbox_object.relates_to_anybox_object) }}
|
2022-07-23 19:02:06 +02:00
|
|
|
{% elif inbox_object.ap_type in ["Article", "Note", "Video", "Page", "Question"] %}
|
2022-06-25 08:23:28 +02:00
|
|
|
{{ utils.display_object(inbox_object) }}
|
2022-06-25 10:20:07 +02:00
|
|
|
{% elif inbox_object.ap_type == "Follow" %}
|
2022-07-27 18:56:14 +02:00
|
|
|
{{ utils.actor_action(inbox_object, "followed you") }}
|
2022-06-28 21:10:22 +02:00
|
|
|
{{ utils.display_actor(inbox_object.actor, actors_metadata) }}
|
2022-07-03 22:01:47 +02:00
|
|
|
{% elif inbox_object.ap_type == "Like" %}
|
2022-09-16 00:52:56 +02:00
|
|
|
{{ utils.actor_action(inbox_object, "liked one of your posts", with_icon=True) }}
|
2022-07-03 22:01:47 +02:00
|
|
|
{{ utils.display_object(inbox_object.relates_to_anybox_object) }}
|
2022-06-25 08:23:28 +02:00
|
|
|
{% else %}
|
2022-06-30 09:25:13 +02:00
|
|
|
<p>
|
2022-06-25 08:23:28 +02:00
|
|
|
Implement {{ inbox_object.ap_type }}
|
2022-06-30 09:25:13 +02:00
|
|
|
{{ inbox_object.ap_object }}
|
|
|
|
</p>
|
2022-06-25 08:23:28 +02:00
|
|
|
{% endif %}
|
|
|
|
{% 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="{{ request.url._path }}?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 %}
|