Graphs/templates/index.html
2025-03-09 15:23:18 +01:00

14 lines
No EOL
235 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Beeebooo</title>
</head>
<body>
{% for graph in graphs %}
<div>
<a href="{% url "type" type=graph %}">{{ graph }}</a>
</div>
{% endfor %}
</body>
</html>