blob: cd4851960fb544e139f8dd2590b852ecf32ce3ad (
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
|
{% extends "base.html" %}
{% block styles %}
{{ super() }}
<link rel="stylesheet" href="{{url_for('static', filename='css/admin/view_annotation.css')}}">
{% endblock %}
{% block app_content %}
<h1>View Annotations</h1>
<div id="graph"></div>
{% endblock %}
{% block scripts %}
{{ super() }}
<script src="{{ bootstrap_find_resource('d3.v5.js', cdn='d3', use_minified=True) }}"></script>
{% if is_multi %}
<script src="{{ url_for('static', filename='js/makeChartMulti.js') }}"></script>
{% else %}
<script src="{{ url_for('static', filename='js/makeChart.js') }}"></script>
{% endif %}
<script>adminViewAnnotations(
'#graph',
{{ data.chart_data | tojson }},
{{ data.annotations | tojson }}
);
</script>
{% endblock scripts %}
|