mirror of
https://github.com/voice-cloning-app/Voice-Cloning-App.git
synced 2026-02-25 04:32:48 +01:00
20 lines
991 B
HTML
20 lines
991 B
HTML
{% extends "base.html" %}
|
|
{% block additional_scripts %}
|
|
<script src="{{ url_for('static', filename='resources/jquery-3.3.1.min.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='resources/socket.io.min.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='application.js') }}"></script>
|
|
{% endblock %}
|
|
{% block content %}
|
|
<h2>Dataset progress</h2>
|
|
<progress id="progress" value="0" max="100"></progress>
|
|
<label for="progress" id="progress_label"></label>
|
|
<p id="pinned"></p>
|
|
<span id="alignment" style="display: none;">
|
|
<p style="text-align: center; margin-bottom: 0; font-weight: bold;" ><span id="alignment-heading"></span> (<a href="alignment-timelapse?name={{ voice }}" target="_blank">Download timelapse</a>)</p>
|
|
<img id="alignment-img" class="center" src=""/>
|
|
</span>
|
|
<div id="logs" style="background-color: #eee;"></div>
|
|
<br>
|
|
<a id="next_link" class="btn btn-primary" style="float:right;visibility:hidden;" href="{{ next_url }}">Next</a>
|
|
{% endblock %}
|