Graphs/templates/index.html

14 lines
235 B
HTML
Raw Normal View History

2025-03-09 15:23:18 +01:00
<!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>