export graph to html function

This commit is contained in:
NaNoMelo
2024-10-14 01:42:38 +02:00
committed by imperosol
parent 71d155613f
commit a44e8a68cb
2 changed files with 62 additions and 8 deletions

View File

@ -5,9 +5,8 @@
{% trans counter_name=counter %}{{ counter_name }} activity{% endtrans %}
{% endblock %}
{% block head %}
{{ super() }}
<script src="{{ static('webpack/graph-index.ts') }}"></script>
{% block additionnal_js %}
<script defer src="{{ static('webpack/graph-index.ts') }}"></script>
{% endblock %}
{%- block additional_css -%}
@ -43,3 +42,16 @@
</div>
</div>
{% endblock %}
{% block script %}
{{super()}}
<script>
window.addEventListener("DOMContentLoaded", () => {
loadChart({
canvas: document.getElementById("activityChart"),
startDate: new Date().setDate(new Date().getDate() - 7),
counterId: {{ counter.id }},
});
});
</script>
{% endblock %}