{# M7 — Unity Asset Store 발견 패키지 표 #} {% extends "base.html" %} {% block title %}Unity Asset Store{% endblock %} {% block content %}

{{ _("Unity Asset Store") }}

{% if cache_path %}

{{ _("Cache path") }}: {{ cache_path }}

{% else %}

{{ _("The cache path is empty. Please enter the Unity Asset Store cache path in settings.") }}

{% endif %}
{% if items %} {% macro sort_th(field, label, cls="") %} {{ label }}{% if sort_field == field %} {{ '↑' if sort_order == 'asc' else '↓' }}{% endif %} {% endmacro %} {{ sort_th("publisher", _("Publisher"), "col-publisher") }} {{ sort_th("category", _("Category"), "col-category") }} {{ sort_th("asset_name", _("Asset name"), "col-asset-name") }} {{ sort_th("package_size", _("Size"), "col-size") }} {{ sort_th("import_state", _("State"), "col-state") }} {{ sort_th("preview_asset_count", _("Preview"), "col-preview") }} {{ sort_th("first_seen_at", _("Added at"), "col-added") }} {% for item in items %} {% include "_unity_package_row.html" %} {% endfor %}
{{ _("Actions") }}
{% else %}

{{ _("No scanned packages. Click 'Scan cache' to search for packages.") }}

{% endif %}
{% endblock %}