Files

20 lines
991 B
HTML
Raw Permalink Normal View History

2021-03-10 15:56:40 +00:00
{% 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>
2021-03-10 15:56:40 +00:00
<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;">
2021-09-18 16:26:28 +01:00
<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>
2021-03-10 15:56:40 +00:00
<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 %}