diff options
author | Javier Hernandez <jhernandez@soleta.eu> | 2024-01-16 10:13:02 +0100 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-01-16 13:25:42 +0100 |
commit | 02b6059c70d5261a206c28b716512605e5dc4cdf (patch) | |
tree | c170b9b4d84510c7fe38ab462877855984b276c4 /ogcp/templates/repos.html | |
parent | bf90e91e2474504bd7e810393c8e5d542a938d48 (diff) |
views: add an action to view repo details1.1.3-11
Add an action to allow the user to view details (name and ip) of a
particular repo.
Diffstat (limited to 'ogcp/templates/repos.html')
-rw-r--r-- | ogcp/templates/repos.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ogcp/templates/repos.html b/ogcp/templates/repos.html index 5ca33fe..ef56d2a 100644 --- a/ogcp/templates/repos.html +++ b/ogcp/templates/repos.html @@ -50,6 +50,8 @@ {% endblock %} {% block commands %} + <input class="btn btn-light {% block nav_repo_info %}{% endblock %}" type="submit" value="{{ _('Repo details') }}" + form="reposForm" formaction="{{ url_for('action_repo_info') }}" formmethod="get"> <input class="btn btn-light {% block nav_repo_add %}{% endblock %}" type="submit" value="{{ _('Add repo') }}" form="reposForm" formaction="{{ url_for('action_repo_add') }}" formmethod="get"> <input class="btn btn-light {% block nav_repo_delete %}{% endblock %}" type="submit" value="{{ _('Delete repo') }}" |