diff --git a/app/Resources/views/color/index.html.twig b/app/Resources/views/color/index.html.twig
index 7b6ffac..b452738 100644
--- a/app/Resources/views/color/index.html.twig
+++ b/app/Resources/views/color/index.html.twig
@@ -6,27 +6,54 @@
{% block content %}
-
-
+
+
+
+
+
+ |
+ ID |
+ Name |
+ RGB |
+ Material |
+
+
+
+ {% for color in colors if not color.transparent%}
+
+ |
+ {{ color.id }} |
+ {{ color.name }} |
+ #{{ color.rgb }} |
+ {{ color.transparent ? 'Transparent' : 'Solid' }} |
+
+ {% endfor %}
+
+
+
+
+
+
+
+
+ |
+ ID |
+ Name |
+ RGB |
+ Material |
+
+
+
+ {% for color in colors if color.transparent%}
- |
- ID |
- Name |
- RGB |
- Material |
+ |
+ {{ color.id }} |
+ {{ color.name }} |
+ #{{ color.rgb }} |
+ {{ color.transparent ? 'Transparent' : 'Solid' }} |
-
-
- {% for color in colors %}
-
- |
- {{ color.id }} |
- {{ color.name }} |
- #{{ color.rgb }} |
- {{ color.transparent ? 'Transparent' : 'Solid' }} |
-
- {% endfor %}
-
-
+ {% endfor %}
+
+
{% endblock %}
diff --git a/app/Resources/views/model/index.html.twig b/app/Resources/views/model/index.html.twig
index b6a06b6..183dcc8 100644
--- a/app/Resources/views/model/index.html.twig
+++ b/app/Resources/views/model/index.html.twig
@@ -1,7 +1,5 @@
{% extends 'base.html.twig' %}
-{% import 'macros/elements.html.twig' as elements %}
-
{% block title %}{{ 'page.model.index' | trans }}{% endblock %}
{% block header %}{{ 'page.model.index' | trans }}{% endblock %}
@@ -30,9 +28,7 @@