blob: 4a9e4748a7a83e8d8b1037fda3a89e6f6bcbe9cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% set profile_index = 1 %}
{% extends "profile.jinja2" %}
{% block profile_content %}
<!-- Second tab -->
<h2 class="chart-title">{{ _("page.profile.graph.km_per_month") }}</h2>
<div style="position: relative; height: 500px; width: 75%; margin: auto;"><canvas id="graph-month-summary"></canvas></div>
{% endblock %}
{% block latescripts %}
<script>
(function() {
loadProfileStats();
})();
</script>
{% endblock %}
|