diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-20 14:57:32 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-20 14:57:32 +0200 |
commit | 992d3b847a892719ee1d2adb35d9585f8db442be (patch) | |
tree | ae6ba7c9ae75a91742dfd6836d0953fefb55d9ce | |
parent | 29cc4d928051bd05fb00f3fd1df463ab8598e0f1 (diff) |
templates: show client details at the end of the client options
Move "Client details" to the last option of the "Client" dropdown
in the Commands page.
-rw-r--r-- | ogcp/templates/commands.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ogcp/templates/commands.html b/ogcp/templates/commands.html index 316eb8f..dc61ad4 100644 --- a/ogcp/templates/commands.html +++ b/ogcp/templates/commands.html @@ -26,10 +26,10 @@ form="scopesForm" formaction="{{ url_for('action_refresh') }}" formmethod="post"> <input class="btn btn-light dropdown-item{% block nav_client_session %}{% endblock %}" type="submit" value="{{ _('Start session') }}" form="scopesForm" formaction="{{ url_for('action_session') }}" formmethod="get"> - <input class="btn btn-light dropdown-item{% block nav_client_details %}{% endblock %}" type="submit" value="{{ _('Client details') }}" - form="scopesForm" formaction="{{ url_for('action_client_info') }}" formmethod="get"> <input class="btn btn-light dropdown-item{% block nav_client_cache %}{% endblock %}" type="submit" value="{{ _('Manage cache') }}" form="scopesForm" formaction="{{ url_for('action_client_cache') }}" formmethod="get"> + <input class="btn btn-light dropdown-item{% block nav_client_details %}{% endblock %}" type="submit" value="{{ _('Client details') }}" + form="scopesForm" formaction="{{ url_for('action_client_info') }}" formmethod="get"> </div> </div> |