diff --git a/templates/auth_status.twig b/templates/auth_status.twig
index 9a5f89b1ce973e4d5af08f01f23b506b4557524b..0077a2aae003a695bfa097f4739c083bd9640443 100644
--- a/templates/auth_status.twig
+++ b/templates/auth_status.twig
@@ -44,7 +44,7 @@
     {% endif %}
 
     {% if nameid.Format %}
-        {% set items = items|merge({('Format'|trans) : nameid.format}) %}
+        {% set items = items|merge({('Format'|trans) : nameid.Format}) %}
     {% endif %}
 
     {% if nameid.NameQualifier %}
@@ -59,9 +59,15 @@
         {% set items = items|merge({'SPProvidedID' : nameid.SPProvidedID}) %}
     {% endif %}
 
-    {% embed '_table.twig' %}
+    <table id="table_with_attributes"  class="attributes pure-table pure-table-striped pure-table-attributes" summary="attribute overview">
+        {% for name, value in items %}
+            <tr class="{{ cycle(['odd', 'even'], loop.index0) }}">
+                <td class="attrname">{{ name }}</td>
+                <td class="attrname">{{ value }}</td>
+            </tr>
+        {% endfor %}
+    </table><br>
 
-    {% endembed %}
 {% endif %}