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
|
{% extends "base.html" %}
{% block extra_resources %}
<link rel="stylesheet" href="statics/css/status.css">
{% endblock %}
{% block content %}
{% from macros import embed %}
<div id="status-fluid">
<div id="status-history">
{{ embed(roots.nbytes_hist) }}
</div>
<div id="status-processing">
{{ embed(roots.processing_hist) }}
</div>
<div id="status-tasks">
{{ embed(roots.task_stream) }}
</div>
<div id="status-progress">
{{ embed(roots.task_progress) }}
</div>
</div>
{{ plot_script }}
{% endblock %}
|