{% extends "base.html" %} {# M7 Phase 6B — 프로젝트 상세 페이지. project: ProjectRow, usage: list[AssetUsageRow], distribution: list[PackDistRow], preferences: list[PreferenceRow], is_active: bool #} {% block title %}{{ project.display_name or project.external_id }} — {{ _("AssetCacheMCP") }}{% endblock %} {% block content %}

{{ project.display_name or project.external_id }}

{{ project.external_id }} {% if is_active %}{{ _("Currently active") }}{% endif %}

← {{ _("Back to list") }} {% if not is_active %} {% endif %}

{{ _("Asset usage history") }}

{% if usage %} {% for u in usage %} {% endfor %}
{{ _("Asset") }} {{ _("Packs") }} {{ _("source") }} {{ _("Used at") }} {{ _("context") }}
{{ u.asset_path }} {{ u.pack_name }} {{ u.source }} {{ u.used_at | datetime }} {{ u.context or "" }}
{% else %}

{{ _("No assets adopted yet.") }}

{% endif %}

{{ _("Adopted pack distribution") }}

{% if distribution %} {% else %}

{{ _("No pack distribution data.") }}

{% endif %}
{% include "_preference_panel.html" %}
{% endblock %}