{% load i18n sizeformat parse_date %}

{% trans "Backend Config Items" %}

{% trans "The following is a list of the items that the diagnostic test is scanning for. If the value of the item is blank, it indicates that this item is either missing or misspelled in the 'cinder.conf' configuration file." %}


{% for key, value in backend_data.config_items.items %}
{{ key }}
{{ value }}

{% empty %}
{% trans "No valid items found" %}
{% endfor %}