{% extends "base.html" %} {% block title %}{{ catalog.name }} - Kirin{% endblock %} {% block breadcrumb %} > {{ catalog.name }} {% endblock %} {% block header_title %}{{ catalog.name }}{% endblock %} {% block header_description %}Datasets in {{ catalog.name }} ({{ catalog.root_dir }}){% endblock %} {% block content %}
{% if auto_auth_success %}

Auto-authentication successful!

{{ auto_auth_message }}

{% endif %} {% if datasets %}
{% for dataset in datasets %}

{{ dataset.name }}

{{ dataset.description or "No description" }}

{{ dataset.commit_count }} commit{{ 's' if dataset.commit_count != 1 else '' }} {% if dataset.current_commit %} {{ dataset.current_commit[:8] }} {% endif %}
{% if dataset.total_size > 0 %}
Size: {{ "%.1f"|format(dataset.total_size / (1024*1024)) }} MB
{% endif %} {% if dataset.last_updated %}
Updated: {{ dataset.last_updated }}
{% endif %}
{% endfor %}
{% elif ssl_issue %}

SSL Certificate Issue

The web UI is running in a pixi environment that lacks proper SSL certificates for cloud storage connections.

Why This Happens

Your notebook works because it uses your system Python with proper SSL certificates. The web UI runs in pixi environment which lacks SSL certificate configuration.

You can still create new datasets, which will work normally.

{% elif error %}

{% if auth_required %}Authentication Required{% else %}Connection Error{% endif %}

{{ error }}

{% if auth_required %}

Authentication Steps

{% if auto_auth_attempted %} {% if auto_auth_success %}
Auto-authentication successful!

{{ auto_auth_message }}

{% else %}
Auto-authentication failed

{{ auto_auth_message }}

{% endif %} {% endif %} {% if catalog.auth_command %}

Run this command in your terminal:

{{ catalog.auth_command }} {% else %}

Authenticate with your cloud provider using the appropriate CLI:

  • AWS: aws sso login --profile {{ catalog.aws_profile or 'default' }}
  • GCP: gcloud auth login
  • Azure: az login
{% endif %}
{% else %} {% endif %}
{% else %}

No datasets yet

This catalog doesn't have any datasets yet. Create your first dataset to get started.

Connection Note

If you're experiencing SSL certificate issues on macOS, datasets may not be listed here. You can still create new datasets which will work normally.

{% endif %}
{% endblock %}