mirror of
https://github.com/voice-cloning-app/Voice-Cloning-App.git
synced 2026-07-10 04:20:11 +02:00
18 lines
815 B
HTML
18 lines
815 B
HTML
{% extends "base.html" %}
|
|
{% block additional_scripts %}
|
|
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/3.1.1/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>
|
|
<p style="text-align: center; margin-bottom: 0; font-weight: bold;" id="alignment-heading"></p>
|
|
<img id="alignment-img" class="center" src=""/>
|
|
<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 %}
|