Begin with model

This commit is contained in:
2023-06-05 12:06:56 +02:00
parent 7c2bcbb2f0
commit ae04ea5426
29 changed files with 806 additions and 0 deletions

13
app/templates/index.html Normal file
View File

@@ -0,0 +1,13 @@
{% extends "base.html" %}
{% block content %}
{% if benchmarks %}
<h5>Benchmarks</h5>
<ul>
{% for benchmark in benchmarks %}
<li>
<a href="">{{ benchmark.name }} {{ benchmark.folder }}</a>
</li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}