mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-22 05:32:12 -03:00
36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}LoRA Manager{% endblock %}
|
|
{% block page_id %}loras{% endblock %}
|
|
|
|
{% block preload %}
|
|
{% if not is_initializing %}
|
|
<link rel="preload" href="/loras_static/js/loras.js" as="script" crossorigin="anonymous">
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block init_title %}Initializing LoRA Manager{% endblock %}
|
|
{% block init_message %}Scanning and building LoRA cache. This may take a few minutes...{% endblock %}
|
|
{% block init_check_url %}/api/loras/list?page=1&page_size=1{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include 'components/controls.html' %}
|
|
{% include 'components/alphabet_bar.html' %}
|
|
{% include 'components/duplicates_banner.html' %}
|
|
|
|
<!-- Lora卡片容器 -->
|
|
<div class="card-grid" id="modelGrid">
|
|
<!-- Cards will be dynamically inserted here -->
|
|
</div>
|
|
<!-- Bulk operations panel will be inserted here by JavaScript -->
|
|
{% endblock %}
|
|
|
|
{% block overlay %}
|
|
<div class="bulk-mode-overlay"></div>
|
|
{% endblock %}
|
|
|
|
{% block main_script %}
|
|
{% if not is_initializing %}
|
|
<script type="module" src="/loras_static/js/loras.js"></script>
|
|
{% endif %}
|
|
{% endblock %} |