Leviathan/views/hardware/list.twig

32 lines
725 B
Twig
Raw Permalink Normal View History

{% extends 'layouts/default.twig' %}
{% block title %}List of Hardware{% endblock %}
{% block content %}
<div class="row">
<h2>Hardware</h2>
<a href="/hardware/add">Add new hardware</a>
<table class="twelve columns">
<thead>
<tr>
<td>Name</td>
<td>Type</td>
<td>Created at</td>
<td>Last updated</td>
</tr>
</thead>
<tbody>
{% for h in hardware %}
<tr>
<td><a href="/hardware/{{ h.id }}">{{ h.name }}</a></td>
<td>{{ h.type }}</td>
<td>{{ p.createdAt | date('m/d/Y g:ia') }}</td>
<td>{{ p.updatedAt | date('m/d/Y g:ia') }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}