{% extends 'base.jinja.html' %} {% block page_title %} {{ l.sysinfo_page_title }} {% endblock %} {% block add_js %} {% endblock %} {% block body_class %}view-sysinfo-list{% endblock %} {% block page %}
{#

#} {# {{ l.sysinfo_panel_title }}#} {#

#}
{{ HOOK(H_SYSINFO_TOOLBAR_ACTIONS_START) }} {{ HOOK(H_SYSINFO_TOOLBAR_ACTIONS_END) }}
{% for sysinfo_label, sysinfo_value in sysinfo.items() %} {% endfor %} {% for ro_variable in ro_variables %} {% if ro_variable.description %} {% endif %} {% endfor %} {% for env_key, env_value in env_variables.items() %} {% endfor %}
{{ l.sysinfo_panel_table_section_system }}
{{ l[sysinfo_label] }} {{ t(sysinfo_value) }}
{{ ro_variable.description }} {% if ro_variable.value %} {% if ro_variable.type.value == 'bool' %} {% if ro_variable.display() %} ✅ {% else %} ❌ {% endif %} {% else %} {{ ro_variable.display() }} {% endif %} {% else %} {{ l.common_empty }} {% endif %}
{{ l.sysinfo_panel_table_section_server }}
{{ env_key.replace('_',' ')|capitalize }} {% if env_value == true %} ✅ {% elif env_value == false %} ❌ {% elif env_value == none %} {{ l.common_empty }} {% else %} {{ env_value }} {% endif %}
{% endblock %}