summaryrefslogtreecommitdiff
path: root/server/app/templates/celery.html
blob: ddcd25cb2fe596aaf13e4c358a7316d2ef346818 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{%- extends "base.html" %}

{% import "bootstrap/utils.html" as utils %}

{% block content %}
<style>
    .progress {
        width: 100%;
        text-align: center;
    }
</style>

<div class="container">

  <div class="row">
    <h1><a href="/"><img src="/static/img/dulldream_logo_200.png"></a></h1>
    <h2 class="subtitle">Celery Test</h2>
  </div>

  <div class="row">
    <div class="col-sm-12 align_center">
      <button id="submit-data">Submit Data</button><br><br>
      <div id="progress"></div>
    </div>
  </div>

</div>

{% block footer %}
{{ super() }}
{% endblock %}

{% endblock %}


{% block scripts %}
  {{super()}}

<script type="text/javascript" src="{{url_for('static', filename='js/old-js/nanobar.min.js')}}"></script>
<script type="text/javascript" src="{{url_for('static', filename='js/old-js/celery.js')}}"></script>


{% endblock scripts %}