{% 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 %}