From 957027d6f30f0632b211dd05c072712f9340555b Mon Sep 17 00:00:00 2001 From: duongban Date: Sat, 29 May 2021 22:24:55 +0700 Subject: [PATCH] Add list db page --- templates/list_db.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 templates/list_db.html diff --git a/templates/list_db.html b/templates/list_db.html new file mode 100644 index 0000000..9275b92 --- /dev/null +++ b/templates/list_db.html @@ -0,0 +1,25 @@ +{% extends "layout.html" %} +{% block body %} + + + {% for db in dbs %} + + + + + {% else %} + + + + {% endfor %} +
+ Load + +

+ {{ db }} +

+
+ No dbs to show. +
+ +{% endblock %} \ No newline at end of file