From 0dac5ec8fd7fc917a0c145c34a935712245a8452 Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Thu, 3 Nov 2022 23:06:55 +0100 Subject: [PATCH] Add missing template for search --- app/templates/admin_search.html | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 app/templates/admin_search.html diff --git a/app/templates/admin_search.html b/app/templates/admin_search.html new file mode 100644 index 0000000..3771305 --- /dev/null +++ b/app/templates/admin_search.html @@ -0,0 +1,27 @@ +{%- import "utils.html" as utils with context -%} +{% extends "layout.html" %} + +{% block head %} +{{ local_actor.display_name }} - Search +{% endblock %} + +{% block content %} + +
+ +
+ + + +
+ +
+ + {% for result in results %} + {{ utils.display_object(result) }} + {% endfor %} + + +{% endblock %}