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 %}