karton/templates/pastalist.html
2022-04-10 23:21:45 +01:00

40 lines
No EOL
791 B
HTML

{% include "header.html" %}
<table style="width: 100%" border="1">
<tr style="background: lightgrey">
<th>
Key
</th>
<th>
Created
</th>
<th>
Expiration
</th>
<th>
</th>
</tr>
{% for pasta in pastas %}
<tr>
<td>
<a href="/pasta/{{pasta.idAsAnimals()}}">{{pasta.idAsAnimals()}}</a>
</td>
<td>
{{pasta.createdAsString()}}
</td>
<td>
{{pasta.expirationAsString()}}
</td>
<td>
<a href="/remove/{{pasta.idAsAnimals()}}">Remove</a>
</td>
</tr>
{% endfor %}
</table>
{% if pastas.is_empty() %}
<p>
No Pastas :-(
</p>
{%- endif %}
{% include "footer.html" %}