{% if not configs %}

No check policies configured.

Create one using the form above to verify repository integrity.

{% else %} {% for config in configs %}

{{ config.name }}

{{ 'Enabled' if config.enabled else 'Disabled' }}
{% if config.description %}
Description: {{ config.description }}
{% endif %}
Type: {{ config.check_type|title }}
Options: {% if config.verify_data %}✓ Data Verify{% endif %} {% if config.repair_mode %}⚠️ Repair{% endif %} {% if config.save_space %} 💾 Save Space {% endif %} {% if not config.verify_data and not config.repair_mode and not config.save_space %} None {% endif %}
Created: {{ config.created_at | format_datetime_browser("%Y-%m-%d %H:%M", browser_tz_offset) }}
{% endfor %} {% endif %}