Twek admin actor profile
parent
a006ba2cc4
commit
b9d44da06e
|
@ -6,14 +6,6 @@
|
||||||
{{ utils.display_box_filters("admin_inbox") }}
|
{{ utils.display_box_filters("admin_inbox") }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% 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>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{% endmacro %}
|
|
||||||
|
|
||||||
{% if not inbox %}
|
{% if not inbox %}
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<p>Nothing to see yet, <a href="{{ url_for("get_lookup") }}">start following people in the lookup section</a>.</p>
|
<p>Nothing to see yet, <a href="{{ url_for("get_lookup") }}">start following people in the lookup section</a>.</p>
|
||||||
|
@ -22,15 +14,15 @@
|
||||||
|
|
||||||
{% for inbox_object in inbox %}
|
{% for inbox_object in inbox %}
|
||||||
{% if inbox_object.ap_type == "Announce" %}
|
{% if inbox_object.ap_type == "Announce" %}
|
||||||
{{ actor_action(inbox_object, "shared") }}
|
{{ utils.actor_action(inbox_object, "shared") }}
|
||||||
{{ utils.display_object(inbox_object.relates_to_anybox_object) }}
|
{{ utils.display_object(inbox_object.relates_to_anybox_object) }}
|
||||||
{% elif inbox_object.ap_type in ["Article", "Note", "Video", "Page", "Question"] %}
|
{% elif inbox_object.ap_type in ["Article", "Note", "Video", "Page", "Question"] %}
|
||||||
{{ utils.display_object(inbox_object) }}
|
{{ utils.display_object(inbox_object) }}
|
||||||
{% elif inbox_object.ap_type == "Follow" %}
|
{% elif inbox_object.ap_type == "Follow" %}
|
||||||
{{ actor_action(inbox_object, "followed you") }}
|
{{ utils.actor_action(inbox_object, "followed you") }}
|
||||||
{{ utils.display_actor(inbox_object.actor, actors_metadata) }}
|
{{ utils.display_actor(inbox_object.actor, actors_metadata) }}
|
||||||
{% elif inbox_object.ap_type == "Like" %}
|
{% elif inbox_object.ap_type == "Like" %}
|
||||||
{{ actor_action(inbox_object, "liked one of your post") }}
|
{{ utils.actor_action(inbox_object, "liked one of your post") }}
|
||||||
{{ utils.display_object(inbox_object.relates_to_anybox_object) }}
|
{{ utils.display_object(inbox_object.relates_to_anybox_object) }}
|
||||||
{% else %}
|
{% else %}
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -3,6 +3,11 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{{ utils.display_actor(actor, actors_metadata) }}
|
{{ utils.display_actor(actor, actors_metadata) }}
|
||||||
{% for inbox_object in inbox_objects %}
|
{% for inbox_object in inbox_objects %}
|
||||||
|
{% if inbox_object.ap_type == "Announce" %}
|
||||||
|
{{ utils.actor_action(inbox_object, "shared") }}
|
||||||
|
{{ utils.display_object(inbox_object.relates_to_anybox_object) }}
|
||||||
|
{% else %}
|
||||||
{{ utils.display_object(inbox_object) }}
|
{{ utils.display_object(inbox_object) }}
|
||||||
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -171,6 +171,14 @@
|
||||||
</nav>
|
</nav>
|
||||||
{% endmacro %}
|
{% endmacro %}
|
||||||
|
|
||||||
|
{% 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>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% endmacro %}
|
||||||
|
|
||||||
{% macro display_actor(actor, actors_metadata={}, embedded=False) %}
|
{% macro display_actor(actor, actors_metadata={}, embedded=False) %}
|
||||||
{% set metadata = actors_metadata.get(actor.ap_id) %}
|
{% set metadata = actors_metadata.get(actor.ap_id) %}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue