diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-03-14 17:24:23 +0100 |
---|---|---|
committer | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-03-14 17:24:23 +0100 |
commit | 57ab7c11a90f6d4b9a2d54d5590aad88ae7a133f (patch) | |
tree | bdde3a47818be37071f41931b2ca786a3c9b3fe2 /ogcp/templates/scopes.html | |
parent | feed13555454335355063f6b06dd9f035c5369ae (diff) |
Add back button to all actions
Add a back button to facilitate users to return to the previous page.
Diffstat (limited to 'ogcp/templates/scopes.html')
-rw-r--r-- | ogcp/templates/scopes.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ogcp/templates/scopes.html b/ogcp/templates/scopes.html index 08e0482..401a40b 100644 --- a/ogcp/templates/scopes.html +++ b/ogcp/templates/scopes.html @@ -49,6 +49,11 @@ form="scopesForm" formaction="{{ url_for('action_center_delete') }}" formmethod="get"> </div> </div> + {% if btn_back %} + <button class="btn btn-danger ml-3" type="button" id="backButton" onclick="history.back()"> + {{ _("Back") }} + </button> + {% endif %} {% endblock %} {% block content %} |