summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/repos_details.html
diff options
context:
space:
mode:
Diffstat (limited to 'ogcp/templates/actions/repos_details.html')
-rw-r--r--ogcp/templates/actions/repos_details.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/ogcp/templates/actions/repos_details.html b/ogcp/templates/actions/repos_details.html
new file mode 100644
index 0000000..32b96bf
--- /dev/null
+++ b/ogcp/templates/actions/repos_details.html
@@ -0,0 +1,16 @@
+{% 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_add %}active{% endblock %}
+{% block content %}
+
+<h1 class="m-5">{{_('Repo details')}}</h1>
+
+{{ wtf.quick_form(form,
+ method='post',
+ button_map={'create': 'primary'},
+ extra_classes="mx-5") }}
+{% endblock %}