Added benchmark and hardware models; added routes and views for hardware

This commit is contained in:
2023-11-26 12:54:09 -05:00
parent e5602e660d
commit 2f016d3062
10 changed files with 181 additions and 2 deletions

15
views/hardware/view.twig Normal file
View File

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