From a1b164b1062eb7ba6b724ebe84d8d7e0b308e234 Mon Sep 17 00:00:00 2001 From: Alejandro Sirgo Rica Date: Mon, 9 Sep 2024 09:54:06 +0200 Subject: templates: add efi data to /client/info Show EFI info obtained through GET /efi. --- ogcp/templates/efi_inspector.html | 55 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 ogcp/templates/efi_inspector.html (limited to 'ogcp/templates/efi_inspector.html') 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 %} + +
+ + + + + + + + + + + + {% for entry_data in efi_data['entries'] %} + + + + + + + {% endfor %} + +
{{ _('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'] }}

+
+
+ +{% else %} +
+ {{ _('No EFI contents') }} +
+{% endif %} + +{% endif %} -- cgit v1.2.3-18-g5258