Added views and routes for benchmarks

This commit is contained in:
2023-11-27 00:42:42 -05:00
parent 2f016d3062
commit 34faecc52c
6 changed files with 138 additions and 1 deletions

17
views/benchmark/view.twig Normal file
View File

@ -0,0 +1,17 @@
{% extends 'layouts/default.twig' %}
{% block title %}{{ benchmark.name }}{% endblock %}
{% block content %}
<div class="row">
<h2>{{ benchmark.name }}</h2>
<p>Scoring type: {{ benchmark.scoring }}</p>
<p>{{ benchmark.description }}</p>
<hr>
<p><a href="/benchmark">Back</a></p>
</div>
{% endblock %}