diff --git a/ogcp/templates/actions/client_details.html b/ogcp/templates/actions/client_details.html
index 6bccace..e462205 100644
--- a/ogcp/templates/actions/client_details.html
+++ b/ogcp/templates/actions/client_details.html
@@ -41,7 +41,12 @@
{% set readonly_disk_inspector = True %}
{% include 'disk_inspector.html' %}
+
{% include 'cache_inspector.html' %}
+
+
+{% include 'efi_inspector.html' %}
+
{% endblock %}
diff --git a/ogcp/templates/efi_inspector.html b/ogcp/templates/efi_inspector.html
new file mode 100644
index 0000000..43f1bc7
--- /dev/null
+++ b/ogcp/templates/efi_inspector.html
@@ -0,0 +1,55 @@
+{% if efi_data is defined %}
+
+{% if efi_data['entries']|length > 0 %}
+
+
{{ _('Order') }} | +{{ _('Active') }} | +{{ _('Name') }} | +{{ _('Description') }} | +
---|---|---|---|
+ + {% if entry_data['order'] is defined %} + {{ entry_data['order'] }} + {% else %} + - + {% endif %} + + |
+
+ + {% if entry_data['active'] == 1 %} + {{ _('yes') }} + {% else %} + {{ _('no') }} + {% endif %} + + |
+
+ {{ entry_data['name'] }} + |
+
+ {{ entry_data['description'] }} + |
+