summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions
diff options
context:
space:
mode:
authorAlejandro Sirgo Rica <asirgo@soleta.eu>2024-09-16 17:32:41 +0200
committerAlejandro Sirgo Rica <asirgo@soleta.eu>2024-09-16 17:32:41 +0200
commit19295f8158e6bd91dc58e1fce6fc2607d5db1c6c (patch)
treebede17aadf9050b1364122fbde93a6c950fa73c7 /ogcp/templates/actions
parentf03077edb70e939bfb447fea4cf46340f736b657 (diff)
templates: disable sidebar in images and repos
Disable sidebar interaction in Images and Repos views.
Diffstat (limited to 'ogcp/templates/actions')
-rw-r--r--ogcp/templates/actions/delete_repo.html2
-rw-r--r--ogcp/templates/actions/image_config.html1
-rw-r--r--ogcp/templates/actions/image_details.html1
-rw-r--r--ogcp/templates/actions/list_images.html1
-rw-r--r--ogcp/templates/actions/repo_details.html2
-rw-r--r--ogcp/templates/actions/repos_add.html2
-rw-r--r--ogcp/templates/actions/repos_update.html2
7 files changed, 11 insertions, 0 deletions
diff --git a/ogcp/templates/actions/delete_repo.html b/ogcp/templates/actions/delete_repo.html
index 8c32a8c..16b378b 100644
--- a/ogcp/templates/actions/delete_repo.html
+++ b/ogcp/templates/actions/delete_repo.html
@@ -1,5 +1,7 @@
{% extends 'repos.html' %}
{% import "bootstrap/wtf.html" as wtf %}
+
+{% set sidebar_state = 'disabled' %}
{% set btn_back = true %}
{% block nav_repos %} active{% endblock %}
diff --git a/ogcp/templates/actions/image_config.html b/ogcp/templates/actions/image_config.html
index f72a126..26fc737 100644
--- a/ogcp/templates/actions/image_config.html
+++ b/ogcp/templates/actions/image_config.html
@@ -1,6 +1,7 @@
{% extends 'images.html' %}
{% import "bootstrap/wtf.html" as wtf %}
+{% set sidebar_state = 'disabled' %}
{% set btn_back = true %}
{% block content %}
diff --git a/ogcp/templates/actions/image_details.html b/ogcp/templates/actions/image_details.html
index ab66503..941ca82 100644
--- a/ogcp/templates/actions/image_details.html
+++ b/ogcp/templates/actions/image_details.html
@@ -1,6 +1,7 @@
{% extends 'images.html' %}
{% import "bootstrap/wtf.html" as wtf %}
+{% set sidebar_state = 'disabled' %}
{% set btn_back = true %}
{% block content %}
diff --git a/ogcp/templates/actions/list_images.html b/ogcp/templates/actions/list_images.html
index 708431c..c7eaeeb 100644
--- a/ogcp/templates/actions/list_images.html
+++ b/ogcp/templates/actions/list_images.html
@@ -1,6 +1,7 @@
{% extends 'images.html' %}
{% import "bootstrap/wtf.html" as wtf %}
+{% set sidebar_state = 'disabled' %}
{% set btn_back = true %}
{% block content %}
diff --git a/ogcp/templates/actions/repo_details.html b/ogcp/templates/actions/repo_details.html
index 212a63b..d91f961 100644
--- a/ogcp/templates/actions/repo_details.html
+++ b/ogcp/templates/actions/repo_details.html
@@ -1,5 +1,7 @@
{% extends 'repos.html' %}
{% import "bootstrap/wtf.html" as wtf %}
+
+{% set sidebar_state = 'disabled' %}
{% set btn_back = true %}
{% block nav_repos %} active{% endblock %}
diff --git a/ogcp/templates/actions/repos_add.html b/ogcp/templates/actions/repos_add.html
index 19f02bf..32ded5a 100644
--- a/ogcp/templates/actions/repos_add.html
+++ b/ogcp/templates/actions/repos_add.html
@@ -1,5 +1,7 @@
{% extends 'repos.html' %}
{% import "bootstrap/wtf.html" as wtf %}
+
+{% set sidebar_state = 'disabled' %}
{% set btn_back = true %}
{% block nav_repos %} active{% endblock %}
diff --git a/ogcp/templates/actions/repos_update.html b/ogcp/templates/actions/repos_update.html
index 1278648..37f06cc 100644
--- a/ogcp/templates/actions/repos_update.html
+++ b/ogcp/templates/actions/repos_update.html
@@ -1,5 +1,7 @@
{% extends 'repos.html' %}
{% import "bootstrap/wtf.html" as wtf %}
+
+{% set sidebar_state = 'disabled' %}
{% set btn_back = true %}
{% block nav_repos %} active{% endblock %}