diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-07-16 11:41:41 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-07-16 12:55:31 +0200 |
commit | 314a173b6cc3125190786e43158b7a60063f33bf (patch) | |
tree | 626c3d0e2820d4020e2bf4fb641320a0d5d6827d /ogcp/templates/actions/client_details.html | |
parent | 5af2b3738be739796ae98ce68a3ea9162c7248bf (diff) |
ogcp: show cache contents in client details
Show cache contents in client details for a more complete view
of the client's state.
Move the cache inspector code to its own template for reusability.
Diffstat (limited to 'ogcp/templates/actions/client_details.html')
-rw-r--r-- | ogcp/templates/actions/client_details.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ogcp/templates/actions/client_details.html b/ogcp/templates/actions/client_details.html index 0362d5b..070e4d6 100644 --- a/ogcp/templates/actions/client_details.html +++ b/ogcp/templates/actions/client_details.html @@ -9,6 +9,8 @@ {% block nav_client_add %}active{% endblock %} {% block content %} +{% set ip_list = [form.ip.data] %} + <h2 class="mx-5 subhead-heading">{{_('Client details')}}</h2> <div class="container mt-5"> @@ -106,4 +108,6 @@ </table> {% endif %} +{% include 'cache_inspector.html' %} + {% endblock %} |