From 16c8e9a360104efe7d98e6148ef7be3da884d491 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Sun, 14 May 2023 15:45:22 +0000 Subject: [PATCH] Add missing template. --- templates/run_sql.html | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 templates/run_sql.html diff --git a/templates/run_sql.html b/templates/run_sql.html new file mode 100644 index 0000000..5c88a27 --- /dev/null +++ b/templates/run_sql.html @@ -0,0 +1,23 @@ +{% extends "base.html" %} + +{% block title %}{% endblock %} + +{% block content %} +
+ +
+
+ + +
+ +
+ + {% if result %} + {% for row in result %} +
{{ row }}
+ {% endfor %} + {% endif %} + +
+{% endblock %}