Modified some styles; more bootstrap 5 changes; added logo

This commit is contained in:
2025-08-18 00:11:36 -04:00
parent 03dab84224
commit c00d631e9f
16 changed files with 250 additions and 152 deletions

View File

@@ -5,23 +5,26 @@
{% block content %}
<div class="row">
<h2>Recently updated tests:</h2>
<table class="twelve columns">
<thead>
<tr>
<td>Title</td>
<td>Last updated</td>
<td>Created at</td>
</tr>
</thead>
<tbody>
{% for t in tests %}
<div class="col-12">
<table class="table table-responsive table-hover">
<thead>
<tr>
<td><a href="/test/{{ t.id }}">{{ t.title }}</a></td>
<td>{{ t.updatedAt | date('m/d/Y g:ia') }}</td>
<td>{{ t.createdAt | date('m/d/Y g:ia') }}</td>
<td>Title</td>
<td>Last updated</td>
<td>Created at</td>
</tr>
{% endfor %}
</tbody>
</table>
</thead>
<tbody>
{% for t in tests %}
<tr>
<td><a href="/test/{{ t.id }}">{{ t.title }}</a></td>
<td>{{ t.updatedAt | date('m/d/Y g:ia') }}</td>
<td>{{ t.createdAt | date('m/d/Y g:ia') }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
{% endblock %}