{% 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 %}
Loading...