{# Edit modal content — rendered as innerHTML of #}

Edit install

{% if r.removed_at %} {% with tone="remove", label="uninstalled" %}{% include "components/pill.html" %}{% endwith %} {% elif r.metadata_complete == 0 %} incomplete {% else %} installed {% endif %}

{{ r.command }}

{# ── Read-only metadata ─────────────────────────────────────────────────────── #}
Run from
{{ r.install_dir or "—" }}
Installed to (best-effort)
{{ r.resolved_path or "—" }}
Installed at
{{ r.installed_at[:10] }} {{ r.installed_at[11:16] }}
{% if r.reinstall_count and r.reinstall_count > 0 %}
Reinstalled
{{ r.reinstall_count }}×
{% endif %} {% if r.source_url %}
Source URL
{{ r.source_url }}
{% endif %} {% if r.removed_at %}
Uninstalled at
{{ r.removed_at[:10] }} {{ r.removed_at[11:16] }}
{% if r.why %}
Removal reason
{{ r.why }}
{% endif %} {% endif %}
{% for p in projects %} {% if history %}

Commands before this install

    {% for cmd in history %}
  1. {{ loop.index }}. {{ cmd }}
  2. {% endfor %}
{% endif %}