summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/add_repository.html
diff options
context:
space:
mode:
authorJavier Sánchez Parra <jsanchez@soleta.eu>2022-08-31 17:45:20 +0200
committerJavier Sánchez Parra <jsanchez@soleta.eu>2022-09-27 09:48:36 +0200
commit3459de36f35839e98e894ae3b58c4f4374d90913 (patch)
tree80136e41ad43c3500ee584a61181b58deaa7303b /ogcp/templates/actions/add_repository.html
parent07c5cb25d2281d2253729ecc7b7b40efdf6db140 (diff)
Add Servers section
In Servers section/view, users can add or delete ogServers from ogCP configuration file. Replaces Repositories views and recycle some of its code.
Diffstat (limited to 'ogcp/templates/actions/add_repository.html')
-rw-r--r--ogcp/templates/actions/add_repository.html17
1 files changed, 0 insertions, 17 deletions
diff --git a/ogcp/templates/actions/add_repository.html b/ogcp/templates/actions/add_repository.html
deleted file mode 100644
index e7c50fa..0000000
--- a/ogcp/templates/actions/add_repository.html
+++ /dev/null
@@ -1,17 +0,0 @@
-{% extends 'repositories.html' %}
-{% import "bootstrap/wtf.html" as wtf %}
-
-{% set sidebar_state = 'disabled' %}
-{% set btn_back = true %}
-
-{% block nav_repository_add %}active{% endblock %}
-{% block content %}
-
-<h1 class="m-5">{{_('Add a repository')}}</h1>
-
-{{ wtf.quick_form(form,
- action=url_for('repository_add_post'),
- method='post',
- button_map={'submit_btn':'primary'}) }}
-
-{% endblock %}