Leviathan/views/benchmark/view.twig

18 lines
317 B
Twig
Raw Permalink Normal View History

2023-11-27 00:42:42 -05:00
{% 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 %}