{% extends "base.html" %} {% block title %}{{ dataset_name }} - {{ catalog_id }} - Kirin{% endblock %} {% block breadcrumb %} > {{ catalog_id }} > {{ dataset_name }} {% endblock %} {% block header_title %}{{ dataset_name }}{% endblock %} {% block header_description %} {{ dataset_info.description or "No description" }}
{{ dataset_info.commit_count }} commits • {% if dataset_info.total_size > 0 %} {{ "%.1f"|format(dataset_info.total_size / (1024*1024)) }} MB • {% endif %} {% if dataset_info.current_commit %} {{ dataset_info.current_commit[:8] }} HEAD {% if dataset_info.current_commit_tags %} {% for tag in dataset_info.current_commit_tags %} {{ tag }} {% endfor %} {% endif %} {% else %} No commits {% endif %} {% endblock %} {% block content %} {% if checkout_commit %}
⚠️ Viewing historical commit [{{ checkout_commit[:8] }}] from {{ checkout_timestamp }}
This is a read-only view. Return to HEAD →
{% endif %}
{% if not checkout_commit %} {% endif %}
{% if active_tab == 'files' %} {% include 'files_tab.html' %} {% elif active_tab == 'history' %} {% include 'history_tab.html' %} {% elif active_tab == 'commit' %} {% include 'commit_form.html' %} {% endif %}

Loading...

{% endblock %}