Blame view

flaskr/templates/estimation-queue-wait.html 436 Bytes
12589c50   Antoine Goutenoir   Design a template...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "base.html" %}


{% block title %}
Estimation {{ estimation.public_id }} is computing… Please wait.
{% endblock %}


{% block hero %}
<div class="jumbotron">
    <h1>{{ content.estimate_queue.hero.title | safe }}</h1>
    {{ content.estimate_queue.hero.description | markdown | safe }}
</div>
{% endblock %}


{% block extra_meta %}
<meta http-equiv="refresh" content="20">
{% endblock %}


{% block body %}
{% endblock %}