Added pages to list projects and create new ones

This commit is contained in:
2023-11-26 02:07:20 -05:00
parent df2a96c3b4
commit ecc48226a7
7 changed files with 145 additions and 5 deletions

View File

@ -3,5 +3,42 @@
{% block title %}Dashboard{% endblock %}
{% block content %}
<p>This is the dashboard!</p>
<div class="row">
<h2>Recently updated projects:</h2>
<table class="twelve columns">
<thead>
<tr>
<td>Title</td>
<td>Last updated</td>
</tr>
</thead>
<tbody>
{% for p in projects %}
<tr>
<td>{{ p.title }}</td>
<td>{{ p.updatedAt | date('m/d/Y g:ia') }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
<hr>
<div class="row">
<h2>Recently added results:</h2>
<table class="twelve columns">
<thead>
<tr>
<td>Benchmark</td>
<td>Hardware</td>
<td>Average/Score</td>
<td>Scoring type</td>
<td>Added on</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
{% endblock %}