nopaque/web/app/templates/modals/analysis_init.html.j2

17 lines
665 B
Plaintext
Raw Normal View History

2020-07-21 11:40:17 +00:00
<!-- Analysis init modal. User feedback showing that the analysis session is
loading. -->
2020-08-24 14:33:37 +00:00
<div class="modal no-autoinit" id="analysis-init-modal">
2020-07-21 11:40:17 +00:00
<div class="modal-content">
<h4>Initializing your corpus analysis session...</h4>
2020-08-24 14:33:37 +00:00
<p>If the loading takes to long or an error occured,
<a onclick="window.location.reload()" href="#">click here</a>
to refresh your session or
<a href="{{ url_for('corpora.corpus', corpus_id=corpus_id) }}">go back</a>!
</p>
<div id="analysis-init-progress" class="progress">
2020-07-21 11:40:17 +00:00
<div class="indeterminate"></div>
</div>
2020-08-24 14:33:37 +00:00
<p id="analysis-init-error" class="hide red-text"></p>
2020-07-21 11:40:17 +00:00
</div>
</div>