mirror of
https://github.com/denizsafak/abogen.git
synced 2026-07-20 14:20:28 +02:00
- Introduced a new speaker configuration page with the ability to create, edit, and delete speaker presets. - Added a step indicator to guide users through the audiobook workflow. - Enhanced the audiobook creation process by allowing users to select speaker presets and configure individual speaker settings. - Implemented dynamic UI elements for managing speaker rows, including adding and removing speakers. - Updated existing templates to integrate speaker configuration features and improve user experience. - Added JavaScript functionality for managing speaker rows and ensuring proper form handling. - Created a new module for handling speaker configuration data storage and retrieval.
30 lines
930 B
HTML
30 lines
930 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}abogen · Queue{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="card">
|
|
<div class="step-indicator" aria-label="Audiobook workflow">
|
|
<span class="step-indicator__item is-complete">
|
|
<span class="step-indicator__index">1</span>
|
|
<span class="step-indicator__label">Upload</span>
|
|
</span>
|
|
<span class="step-indicator__item is-complete">
|
|
<span class="step-indicator__index">2</span>
|
|
<span class="step-indicator__label">Speakers</span>
|
|
</span>
|
|
<span class="step-indicator__item is-active">
|
|
<span class="step-indicator__index">3</span>
|
|
<span class="step-indicator__label">Queue</span>
|
|
</span>
|
|
</div>
|
|
<div id="jobs-panel"
|
|
hx-get="{{ url_for('web.jobs_partial') }}"
|
|
hx-trigger="load, every 3s"
|
|
hx-target="#jobs-panel"
|
|
hx-swap="innerHTML">
|
|
{{ jobs_panel|safe }}
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|