diff --git a/muranodashboard/static/muranodashboard/css/one_field_form.css b/muranodashboard/static/muranodashboard/css/one_field_form.css
deleted file mode 100644
index b4c01dc58..000000000
--- a/muranodashboard/static/muranodashboard/css/one_field_form.css
+++ /dev/null
@@ -1,3 +0,0 @@
-div.left {
- margin-top: 25px;
-}
diff --git a/muranodashboard/templates/catalog/app_details.html b/muranodashboard/templates/catalog/app_details.html
index 5408dcca0..3907632a2 100644
--- a/muranodashboard/templates/catalog/app_details.html
+++ b/muranodashboard/templates/catalog/app_details.html
@@ -1,12 +1,19 @@
{% extends 'murano_base.html' %}
{% load i18n sizeformat %}
{% load static %}
+{% load compress %}
{% load url from future %}
{% block title %}{% trans "Application Details" %}: {{ app.name }}{% endblock %}
+{% block css %}
+ {{ block.super }}
+ {% compress css %}
+
+
+ {% endcompress %}
+{% endblock %}
+
{% block page_header %}
-
-
{% include "catalog/_details_page_header.html" with name=app.name %}
{% endblock page_header %}
diff --git a/muranodashboard/templates/catalog/index.html b/muranodashboard/templates/catalog/index.html
index b81e9c8e1..be8b18d76 100644
--- a/muranodashboard/templates/catalog/index.html
+++ b/muranodashboard/templates/catalog/index.html
@@ -1,15 +1,20 @@
{% extends 'murano_base.html' %}
{% load i18n %}
{% load static %}
+{% load compress %}
{% load url from future %}
{% block title %}{% trans "Applications" %}{% endblock %}
+{% block css %}
+ {{ block.super }}
+ {% compress css %}
+
+
+ {% endcompress %}
+{% endblock %}
+
{% block page_header %}
-
-
{% include "horizon/common/_page_header.html" with title=_("Applications") %}
{% endblock page_header %}
diff --git a/muranodashboard/templates/deployments/_logs.html b/muranodashboard/templates/deployments/_logs.html
index 5abb2a0fd..f3f627628 100644
--- a/muranodashboard/templates/deployments/_logs.html
+++ b/muranodashboard/templates/deployments/_logs.html
@@ -1,7 +1,5 @@
{% load i18n static %}
-
-
{% trans "Deployment Logs" %}
@@ -9,4 +7,4 @@
{% for report in reports %}
{{report.created}} — {{report.text | urlize}}
{% endfor %}
-
\ No newline at end of file
+
diff --git a/muranodashboard/templates/environments/index.html b/muranodashboard/templates/environments/index.html
index 61cb6a799..1c04f0a66 100644
--- a/muranodashboard/templates/environments/index.html
+++ b/muranodashboard/templates/environments/index.html
@@ -1,6 +1,7 @@
{% extends 'murano_base.html' %}
{% load i18n %}
{% load static %}
+{% load compress %}
{% block title %}{% trans "Environments" %}{% endblock %}
{% block page_header %}
@@ -13,5 +14,7 @@
{% block css %}
{{ block.super }}
-
+ {% compress css %}
+
+ {% endcompress %}
{% endblock %}
diff --git a/muranodashboard/templates/packages/_import_bundle.html b/muranodashboard/templates/packages/_import_bundle.html
index acafa03d0..1d844354c 100644
--- a/muranodashboard/templates/packages/_import_bundle.html
+++ b/muranodashboard/templates/packages/_import_bundle.html
@@ -10,7 +10,6 @@
{% block modal-header %}{% trans 'Import Bundle' %}{% endblock %}
{% block modal-body %}
-
{{ wizard.management_form }}
{% if wizard.form.forms %}
diff --git a/muranodashboard/templates/packages/_upload.html b/muranodashboard/templates/packages/_upload.html
index db56f7700..5a8ca00e6 100644
--- a/muranodashboard/templates/packages/_upload.html
+++ b/muranodashboard/templates/packages/_upload.html
@@ -11,7 +11,6 @@
{% block modal-header %}{% trans 'Import Package' %}{% endblock %}
{% block modal-body %}
-
{{ wizard.management_form }}
{% if wizard.form.forms %}
diff --git a/muranodashboard/templates/packages/index.html b/muranodashboard/templates/packages/index.html
index 3ada1b13c..47f8690e7 100644
--- a/muranodashboard/templates/packages/index.html
+++ b/muranodashboard/templates/packages/index.html
@@ -1,12 +1,18 @@
{% extends 'murano_base.html' %}
{% load i18n %}
{% load static %}
+{% load compress %}
{% block title %}{% trans "Package Definitions" %}{% endblock %}
+{% block css %}
+ {{ block.super }}
+ {% compress css %}
+
+ {% endcompress %}
+{% endblock %}
+
{% block page_header %}
{% include "horizon/common/_page_header.html" with title=_("Package Definitions") %}
-
{% endblock page_header %}
{% block main %}
{{ table.render }}
diff --git a/muranodashboard/templates/services/details.html b/muranodashboard/templates/services/details.html
index 2079b4295..98a776422 100644
--- a/muranodashboard/templates/services/details.html
+++ b/muranodashboard/templates/services/details.html
@@ -1,7 +1,16 @@
{% extends 'murano_base.html' %}
{% load i18n sizeformat %}
+{% load static %}
+{% load compress %}
{% block title %}{% trans "Component Details" %}{% endblock %}
+{% block css %}
+ {{ block.super }}
+ {% compress css %}
+
+ {% endcompress %}
+{% endblock %}
+
{% block page_header %}
{% include "services/_detail_page_header.html" %}
{% endblock page_header %}
diff --git a/muranodashboard/templates/services/index.html b/muranodashboard/templates/services/index.html
index 096c47781..33f9ab4e4 100644
--- a/muranodashboard/templates/services/index.html
+++ b/muranodashboard/templates/services/index.html
@@ -1,6 +1,7 @@
{% extends 'murano_base.html' %}
{% load i18n %}
{% load static %}
+{% load compress %}
{% load horizon %}
{% load custom_filters %}
{% block title %}{% trans "Components" %}{% endblock %}
@@ -18,11 +19,12 @@
{% endblock %}
{% block css %}
- {% include "_stylesheets.html" %}
-
-
+ {{ block.super }}
+ {% compress css %}
+
+
+
+ {% endcompress %}
{% endblock %}
{% block js %}