diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-25 12:36:35 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-25 13:53:04 +0200 |
commit | 25bb1ff73b537c53b07c7d41c28e1b52c149c026 (patch) | |
tree | 1acbbc7959c32f0350aaac1724b79665accae528 | |
parent | 0ed9ecdae9a7e4c7fbb30af30ef4310cd45f2143 (diff) |
templates: rename Edit client to Update client
Rename Client/Edit client menu in scopes management view to keep
the same naming pattern as the other menu elements.
-rw-r--r-- | ogcp/templates/scopes.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ogcp/templates/scopes.html b/ogcp/templates/scopes.html index 725454b..dc5eb71 100644 --- a/ogcp/templates/scopes.html +++ b/ogcp/templates/scopes.html @@ -24,7 +24,7 @@ <div class="dropdown-menu" aria-labelledby="dropdownMenuButton"> <input class="btn btn-light dropdown-item {% block nav_client_add %}{% endblock %}" type="submit" value="{{ _('Add client') }}" form="scopesForm" formaction="{{ url_for('action_client_add') }}" formmethod="get"> - <input class="btn btn-light dropdown-item {% block nav_client_update %}{% endblock %}" type="submit" value="{{ _('Edit client') }}" + <input class="btn btn-light dropdown-item {% block nav_client_update %}{% endblock %}" type="submit" value="{{ _('Update client') }}" form="scopesForm" formaction="{{ url_for('action_client_update') }}" formmethod="get"> <input class="btn btn-light dropdown-item {% block nav_client_move %}{% endblock %}" type="submit" value="{{ _('Move client') }}" form="scopesForm" formaction="{{ url_for('action_client_move') }}" formmethod="get"> |