summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/repo_details.html
diff options
context:
space:
mode:
authorJavier Hernandez <jhernandez@soleta.eu>2024-01-16 10:13:02 +0100
committerOpenGnSys Support Team <soporte-og@soleta.eu>2024-01-16 13:25:42 +0100
commit02b6059c70d5261a206c28b716512605e5dc4cdf (patch)
treec170b9b4d84510c7fe38ab462877855984b276c4 /ogcp/templates/actions/repo_details.html
parentbf90e91e2474504bd7e810393c8e5d542a938d48 (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/actions/repo_details.html')
-rw-r--r--ogcp/templates/actions/repo_details.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/ogcp/templates/actions/repo_details.html b/ogcp/templates/actions/repo_details.html
new file mode 100644
index 0000000..ee45a97
--- /dev/null
+++ b/ogcp/templates/actions/repo_details.html
@@ -0,0 +1,13 @@
+{% extends 'repos.html' %}
+{% import "bootstrap/wtf.html" as wtf %}
+{% set btn_back = true %}
+
+{% block nav_repos %} active{% endblock %}
+{% block nav_repos_details %} active{% endblock %}
+{% block nav_repos_info %}active{% endblock %}
+{% block content %}
+
+<h1 class="m-5">{{_('Repo details')}}</h1>
+
+{{ wtf.quick_form(form, extra_classes="mx-5") }}
+{% endblock %}