{% extends "scitex_ui/standalone_shell.html" %} {% comment %} File: src/scitex_storage/_django/templates/scitex_storage/index.html Extends scitex-ui's shared workspace shell (verified against the real scitex_ui 0.6.3 package installed in a throwaway venv during this scaffold's build: block names below — extra_css / app_content / extra_js — are confirmed correct, not guessed; see src/scitex_storage/_django/templates/scitex_storage/../../README or the PR description for how this was verified). This is plain server-rendered Django HTML (frontend_type: "server-rendered" in manifest.json) — no React/Vite bridge yet. The disk-treemap UI (a later phase) will likely need one; this scaffold's job is only to prove real scan() data renders inside the hub shell. {% endcomment %} {% block extra_css %} {% endblock %} {% block app_content %}

SciTeX Storage

{% if error %}

{{ error }}

{% elif root %}

{{ root }} — {{ total_size }} across {{ children|length }} top-level {% if children|length == 1 %}entry{% else %}entries{% endif %} ({{ total_files }} files total)

{% for child in children %} {% empty %} {% endfor %}
Child Size Files
{{ child.name }}{% if child.error %} [{{ child.error }}]{% endif %} {{ child.size }} {{ child.file_count }}
(empty)
{% else %}

Enter a path above and click Scan.

{% endif %}
{% endblock %} {% block extra_js %}{% endblock %}