{%- import "utils.html" as utils with context -%} {% extends "layout.html" %} {% block content %} {% if show_filters %} {{ utils.display_box_filters("admin_inbox") }} {% endif %} {% if not inbox %}

Nothing to see yet, start following people in the lookup section.

{% endif %} {% for inbox_object in inbox %} {% if inbox_object.ap_type == "Announce" %} {{ utils.actor_action(inbox_object, "shared") }} {{ utils.display_object(inbox_object.relates_to_anybox_object) }} {% elif inbox_object.ap_type in ["Article", "Note", "Video", "Page", "Question"] %} {{ utils.display_object(inbox_object) }} {% elif inbox_object.ap_type == "Follow" %} {{ utils.actor_action(inbox_object, "followed you") }} {{ utils.display_actor(inbox_object.actor, actors_metadata) }} {% elif inbox_object.ap_type == "Like" %} {{ utils.actor_action(inbox_object, "liked one of your post") }} {{ utils.display_object(inbox_object.relates_to_anybox_object) }} {% else %}

Implement {{ inbox_object.ap_type }} {{ inbox_object.ap_object }}

{% endif %} {% endfor %} {% if next_cursor %}

See more

{% endif %} {% endblock %}