1
0
mirror of https://git.sr.ht/~tsileo/microblog.pub synced 2025-02-24 16:07:40 +01:00

17 lines
626 B
HTML
Raw Normal View History

2022-06-22 20:11:22 +02:00
{%- import "utils.html" as utils with context -%}
{% extends "layout.html" %}
{% block content %}
2022-06-26 11:09:43 +02:00
<p>Interact with an ActivityPub object via its URL or look for a user using <i>@user@domain.tld</i></p>
2022-06-22 20:11:22 +02:00
<form action="{{ url_for("get_lookup") }}" method="GET">
<input type="text" name="query" value="{{ query if query else "" }}">
<input type="submit" value="Lookup">
</form>
{% if ap_object and ap_object.ap_type == "Person" %}
{{ utils.display_actor(ap_object, actors_metadata) }}
{% elif ap_object %}
2022-06-26 10:01:26 +02:00
{{ utils.display_object_expanded(ap_object) }}
2022-06-22 20:11:22 +02:00
{% endif %}
{% endblock %}