diff --git a/templates/compute_block_link.html b/templates/compute_block_link.html
new file mode 100644
index 0000000..93a3ecf
--- /dev/null
+++ b/templates/compute_block_link.html
@@ -0,0 +1,8 @@
+{% load i18n %}
+{% load tags_activebtn %}
+
\ No newline at end of file
diff --git a/templates/interfaces.html b/templates/interfaces.html
new file mode 100644
index 0000000..f4ca3eb
--- /dev/null
+++ b/templates/interfaces.html
@@ -0,0 +1,27 @@
+{% extends "base.html" %}
+{% load i18n %}
+{% block title %}{% trans "Interfaces" %} - {{ compute.name }}{% endblock %}
+{% block content %}
+
+{% endblock %}
\ No newline at end of file
diff --git a/templates/networks.html b/templates/networks.html
new file mode 100644
index 0000000..a81a0cd
--- /dev/null
+++ b/templates/networks.html
@@ -0,0 +1,27 @@
+{% extends "base.html" %}
+{% load i18n %}
+{% block title %}{% trans "Network" %} - {{ compute.name }}{% endblock %}
+{% block content %}
+
+{% endblock %}
\ No newline at end of file
diff --git a/templates/secrets.html b/templates/secrets.html
new file mode 100644
index 0000000..a6dd73a
--- /dev/null
+++ b/templates/secrets.html
@@ -0,0 +1,27 @@
+{% extends "base.html" %}
+{% load i18n %}
+{% block title %}{% trans "Secrets" %} - {{ compute.name }}{% endblock %}
+{% block content %}
+
+{% endblock %}
\ No newline at end of file
diff --git a/templates/showlogs.html b/templates/showlogs.html
index 5678856..88c9d2d 100644
--- a/templates/showlogs.html
+++ b/templates/showlogs.html
@@ -8,7 +8,7 @@
{% include 'sidebar.html' %}
-
+
{% include 'errors_block.html' %}
diff --git a/templates/sidebar.html b/templates/sidebar.html
index 5640ea4..17b056c 100644
--- a/templates/sidebar.html
+++ b/templates/sidebar.html
@@ -1,18 +1,18 @@
{% load i18n %}
{% load tags_active %}
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/templates/storages.html b/templates/storages.html
new file mode 100644
index 0000000..995ed68
--- /dev/null
+++ b/templates/storages.html
@@ -0,0 +1,27 @@
+{% extends "base.html" %}
+{% load i18n %}
+{% block title %}{% trans "Storages" %} - {{ compute.name }}{% endblock %}
+{% block content %}
+
+
+
+ {% include 'sidebar.html' %}
+
+
+
+ {% include "create_stg_block.html" %}
+
+
+
+ {% include 'compute_block_link.html' %}
+
+ {% include 'errors_block.html' %}
+
+
+
+
+
+
+
+
+{% endblock %}
\ No newline at end of file
diff --git a/webvirtcloud/urls.py b/webvirtcloud/urls.py
index 1828b1b..268a542 100644
--- a/webvirtcloud/urls.py
+++ b/webvirtcloud/urls.py
@@ -15,16 +15,16 @@ urlpatterns = patterns('',
url(r'^computes/$', 'computes.views.computes', name='computes'),
url(r'^compute/(\d+)/$', 'computes.views.compute', name='compute'),
- url(r'^storages/(\d+)/$', 'storages.views.storages', name='storages'),
- url(r'^storage/(\d+)/([\w\-\.]+)/$', 'storages.views.storage', name='storage'),
+ url(r'^compute/stgs/(\d+)/$', 'storages.views.storages', name='storages'),
+ url(r'^compute/stg/(\d+)/([\w\-\.]+)/$', 'storages.views.storage', name='storage'),
- url(r'^networks/(\d+)/$', 'networks.views.networks', name='networks'),
- url(r'^network/(\d+)/([\w\-\.]+)/$', 'networks.views.network', name='network'),
+ url(r'^compute/nets/(\d+)/$', 'networks.views.networks', name='networks'),
+ url(r'^compute/net/(\d+)/([\w\-\.]+)/$', 'networks.views.network', name='network'),
- url(r'^interfaces/(\d+)/$', 'interfaces.views.interfaces', name='interfaces'),
- url(r'^interface/(\d+)/([\w\.]+)$', 'interfaces.views.interface', name='interface'),
+ url(r'^compute/ifaces/(\d+)/$', 'interfaces.views.interfaces', name='interfaces'),
+ url(r'^compute/iface/(\d+)/([\w\.]+)$', 'interfaces.views.interface', name='interface'),
- url(r'^secret/(\d+)/$', 'secrets.views.secrets', name='secrets'),
+ url(r'^compute/secret/(\d+)/$', 'secrets.views.secrets', name='secrets'),
url(r'^users/$', 'users.views.users', name='users'),
url(r'^user/(\d+)/$', 'users.views.user', name='user'),