{% extends "base.html" %} {% block title %}Delete Catalog - Kirin{% endblock %} {% block breadcrumb %} > Catalogs > Delete {{ catalog.name }} {% endblock %} {% block header_title %}Delete Catalog{% endblock %} {% block header_description %}Remove this data catalog and all its datasets{% endblock %} {% block content %}
⚠️ Warning
This action cannot be undone. All datasets in this catalog will be permanently deleted.
Alternative: You can hide this catalog instead to remove it from the main view without deleting it.

Catalog Information

{{ catalog.name }}

{{ catalog.root_dir }}

{% if dataset_count > 0 %} {{ dataset_count }} dataset{{ 's' if dataset_count != 1 else '' }} will be deleted {% else %} No datasets found {% endif %}

{% if dataset_count > 0 %}
Cannot Delete
This catalog contains {{ dataset_count }} dataset{{ 's' if dataset_count != 1 else '' }}. Please delete all datasets first before removing the catalog.
{% endif %}
Cancel
{% if dataset_count == 0 %}
{% endif %}
{% endblock %}