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