diff --git a/computes/templates/computes/instances.html b/computes/templates/computes/instances.html
index e6416c5..489262f 100644
--- a/computes/templates/computes/instances.html
+++ b/computes/templates/computes/instances.html
@@ -42,7 +42,7 @@
{% icon 'filter' %} {% trans "NWFilters" %}
- {% icon 'key' %} {% trans "Secrets" %}
+ {% icon 'key' %} {% trans "Secrets" %}
diff --git a/computes/templates/overview.html b/computes/templates/overview.html
index bddaa83..a6b72c9 100644
--- a/computes/templates/overview.html
+++ b/computes/templates/overview.html
@@ -31,7 +31,7 @@
{% icon 'filter' %} {% trans "NWFilters" %}
- {% icon 'key' %} {% trans "Secrets" %}
+ {% icon 'key' %} {% trans "Secrets" %}
diff --git a/computes/tests.py b/computes/tests.py
index 488202d..7b94825 100644
--- a/computes/tests.py
+++ b/computes/tests.py
@@ -115,7 +115,7 @@ class ComputesTestCase(TestCase):
# TODO: add test for single nwfilter
def test_secrets(self):
- response = self.client.get(reverse('secrets', args=[1]))
+ response = self.client.get(reverse('virtsecrets', args=[1]))
self.assertEqual(response.status_code, 200)
# def test_create_instance_select_type(self):
diff --git a/computes/urls.py b/computes/urls.py
index 15f6331..d69509a 100644
--- a/computes/urls.py
+++ b/computes/urls.py
@@ -33,7 +33,7 @@ urlpatterns = [
path('interface//', interface, name='interface'),
path('nwfilters/', nwfilters, name='nwfilters'),
path('nwfilter//', nwfilter, name='nwfilter'),
- path('secrets/', secrets, name='secrets'),
+ path('virtsecrets/', secrets, name='virtsecrets'),
# path('create/', create_instance_select_type, name='create_instance_select_type'),
# path('create/archs//machines//', create_instance, name='create_instance'),
path('archs//machines/', views.get_compute_machine_types, name='machines'),
diff --git a/interfaces/templates/interface.html b/interfaces/templates/interface.html
index a06a950..00f0385 100644
--- a/interfaces/templates/interface.html
+++ b/interfaces/templates/interface.html
@@ -28,7 +28,7 @@
{% trans "NWFilters" %}
- {% trans "Secrets" %}
+ {% trans "Secrets" %}
diff --git a/interfaces/templates/interfaces.html b/interfaces/templates/interfaces.html
index d6ec05c..d36e91a 100644
--- a/interfaces/templates/interfaces.html
+++ b/interfaces/templates/interfaces.html
@@ -32,7 +32,7 @@
{% trans "NWFilters" %}
- {% trans "Secrets" %}
+ {% trans "Secrets" %}
diff --git a/networks/templates/network.html b/networks/templates/network.html
index 471b767..0f67022 100644
--- a/networks/templates/network.html
+++ b/networks/templates/network.html
@@ -29,7 +29,7 @@
{% trans "NWFilters" %}
- {% trans "Secrets" %}
+ {% trans "Secrets" %}
diff --git a/networks/templates/networks.html b/networks/templates/networks.html
index b847749..14a50bc 100644
--- a/networks/templates/networks.html
+++ b/networks/templates/networks.html
@@ -31,7 +31,7 @@
{% trans "NWFilters" %}
- {% trans "Secrets" %}
+ {% trans "Secrets" %}
diff --git a/nwfilters/templates/nwfilter.html b/nwfilters/templates/nwfilter.html
index 894f35a..e1db43d 100644
--- a/nwfilters/templates/nwfilter.html
+++ b/nwfilters/templates/nwfilter.html
@@ -29,7 +29,7 @@
{% trans "NWFilters" %}
- {% trans "Secrets" %}
+ {% trans "Secrets" %}
diff --git a/nwfilters/templates/nwfilters.html b/nwfilters/templates/nwfilters.html
index 3a7f1bf..ccf83c8 100644
--- a/nwfilters/templates/nwfilters.html
+++ b/nwfilters/templates/nwfilters.html
@@ -35,7 +35,7 @@
{% trans "NWFilters" %}
- {% trans "Secrets" %}
+ {% trans "Secrets" %}
diff --git a/storages/templates/storage.html b/storages/templates/storage.html
index bfcd7a7..f5d6cc5 100644
--- a/storages/templates/storage.html
+++ b/storages/templates/storage.html
@@ -34,7 +34,7 @@
{% trans "NWFilters" %}
- {% trans "Secrets" %}
+ {% trans "Secrets" %}
diff --git a/storages/templates/storages.html b/storages/templates/storages.html
index 21edf6f..25253d0 100644
--- a/storages/templates/storages.html
+++ b/storages/templates/storages.html
@@ -31,7 +31,7 @@
{% trans "NWFilters" %}
- {% trans "Secrets" %}
+ {% trans "Secrets" %}
diff --git a/webvirtcloud/settings.py.template b/webvirtcloud/settings.py.template
index ab371d3..9407b7e 100644
--- a/webvirtcloud/settings.py.template
+++ b/webvirtcloud/settings.py.template
@@ -36,7 +36,7 @@ INSTALLED_APPS = [
"interfaces",
"nwfilters",
"storages",
- "secrets",
+ "virtsecrets",
"logs",
"qr_code",
]