18 lines
472 B
HTML
18 lines
472 B
HTML
|
{%- import "utils.html" as utils with context -%}
|
||
|
{% extends "layout.html" %}
|
||
|
{% block content %}
|
||
|
|
||
|
{% for outbox_object in outbox %}
|
||
|
|
||
|
{% if outbox_object.ap_type == "Announce" %}
|
||
|
{{ utils.display_object(outbox_object.relates_to_anybox_object) }}
|
||
|
{% elif outbox_object.ap_type in ["Article", "Note", "Video"] %}
|
||
|
{{ utils.display_object(outbox_object) }}
|
||
|
{% else %}
|
||
|
Implement {{ outbox_object.ap_type }}
|
||
|
{% endif %}
|
||
|
|
||
|
{% endfor %}
|
||
|
|
||
|
{% endblock %}
|