Removed projects; added tests

This commit is contained in:
2023-12-02 23:41:04 -05:00
parent 286219c5ea
commit 75552eccee
16 changed files with 209 additions and 146 deletions

View File

@ -4,7 +4,7 @@
{% block content %}
<div class="row">
<h2>Recently updated projects:</h2>
<h2>Recently updated tests:</h2>
<table class="twelve columns">
<thead>
<tr>
@ -13,9 +13,9 @@
</tr>
</thead>
<tbody>
{% for p in projects %}
{% for p in tests %}
<tr>
<td><a href="/project/{{ p.id }}">{{ p.title }}</a></td>
<td><a href="/test/{{ p.id }}">{{ p.date_tag }}</a></td>
<td>{{ p.updatedAt | date('m/d/Y g:ia') }}</td>
</tr>
{% endfor %}