tablejohn/templates/pages/graph.html
2023-08-15 00:59:46 +02:00

12 lines
257 B
HTML

{% extends "base.html" %}
{% block title %}graph{% endblock %}
{% block head %}
<link rel="stylesheet" href="{{ link_uplot_css }}" />
<script type="module" src="{{ link_graph_js }}"></script>
{% endblock %}
{% block body %}
<h2>Graph</h2>
{% endblock %}