diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-27 14:15:44 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-28 08:43:34 +0200 |
commit | 3c8d13b696eae3c00a141cb1709ac6eb8d1b949e (patch) | |
tree | 31ddd4c46cb76bf0f7d27251e210047ef1a5e918 | |
parent | 9107316e0e44e9b06ccdadcea09cc6781ac8dfc6 (diff) |
templates: improve spacing in main dashboard
Use a plain line break instead of a horizontal rule to split the
server information.
-rw-r--r-- | ogcp/templates/dashboard.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ogcp/templates/dashboard.html b/ogcp/templates/dashboard.html index 3da6587..1fe473e 100644 --- a/ogcp/templates/dashboard.html +++ b/ogcp/templates/dashboard.html @@ -69,7 +69,7 @@ </div> </div> -<hr /> +<br> <ul class="nav nav-tabs" id="serversTab" role="tablist"> {% for id, server in servers.items() if server.online %} |