38 lines
1.0 KiB
Twig
38 lines
1.0 KiB
Twig
|
{% extends 'base.html.twig' %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1>Sellrecords list</h1>
|
||
|
|
||
|
<table>
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Date</th>
|
||
|
<th>Actions</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for sellRecord in sellRecords %}
|
||
|
<tr>
|
||
|
<td><a href="{{ path('sellrecord_show', { 'date': sellRecord.date }) }}">{{ sellRecord.date }}</a></td>
|
||
|
<td>
|
||
|
<ul>
|
||
|
<li>
|
||
|
<a href="{{ path('sellrecord_show', { 'date': sellRecord.date }) }}">show</a>
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="{{ path('sellrecord_edit', { 'date': sellRecord.date }) }}">edit</a>
|
||
|
</li>
|
||
|
</ul>
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
<ul>
|
||
|
<li>
|
||
|
<a href="{{ path('sellrecord_new') }}">Create a new sellRecord</a>
|
||
|
</li>
|
||
|
</ul>
|
||
|
{% endblock %}
|