{% extends "base.html" %} {% block title %}Manage Codebase & Data{% endblock %} {% block head %} {% endblock %} {% block content %}

System Management

Back to Dashboard
Code Status

Branch: {{ current_branch }}

Active Commit: {{ current_hash }}

{% if uncommitted_changes %}
Uncommitted code changes detected.
{% endif %}
Data Status (Hugging Face)

Repo: {{ hf_repo_id }}

Auto-backup syncs every 2 minutes.
{% for commit in code_commits %} {% endfor %}
Hash Message Author When Action
{{ commit.hash }} {{ commit.message }} {{ commit.author }} {{ commit.date }} {% if commit.hash != current_hash %} {% else %} Active {% endif %}
{% for commit in hf_commits %} {% endfor %} {% if not hf_commits %} {% endif %}
HF Hash Description Timestamp Action
{{ commit.hash[:8] }} {{ commit.message }} {{ commit.date }}
No Hugging Face backups found or HF_TOKEN not set.
{% endblock %} {% block scripts %} {% endblock %}