diff --git a/src/patterns/04-components/multi-type-list/multi-type-list.twig b/src/patterns/04-components/multi-type-list/multi-type-list.twig
index 0a6ed6b9a785e41b3522c8cacace747997ae50a4..103891c47613ba1e3fbfba076f0ae36a927d3232 100644
--- a/src/patterns/04-components/multi-type-list/multi-type-list.twig
+++ b/src/patterns/04-components/multi-type-list/multi-type-list.twig
@@ -65,6 +65,41 @@
             </div>
           {% endif %}
         {% endblock %}
+
+      {% elseif loop.parent.loop.index == 4 %}
+        {% block content_area_4 %}
+          {% include '@components/multi-type-list/_multi-tab-list-include-content.twig' with {
+            'type': type,
+            'lists': lists,
+            'view_all': view_all,
+          } %}
+          {% if view_all %}
+            <div class="uw-multi-type-list__button">
+              {% include '@components/button/button.twig' with {
+                'url': view_all[type].url,
+                'text': view_all[type].text,
+              } %}
+            </div>
+          {% endif %}
+        {% endblock %}
+
+      {% elseif loop.parent.loop.index == 5 %}
+        {% block content_area_5 %}
+          {% include '@components/multi-type-list/_multi-tab-list-include-content.twig' with {
+            'type': type,
+            'lists': lists,
+            'view_all': view_all,
+          } %}
+          {% if view_all %}
+            <div class="uw-multi-type-list__button">
+              {% include '@components/button/button.twig' with {
+                'url': view_all[type].url,
+                'text': view_all[type].text,
+              } %}
+            </div>
+          {% endif %}
+        {% endblock %}
+
       {% endif %}
 
     {% endfor %}