forked from lubiana/futtern
add order
This commit is contained in:
parent
7663f684a4
commit
1dc5306967
37 changed files with 1060 additions and 113 deletions
30
templates/order_item/show.html.twig
Normal file
30
templates/order_item/show.html.twig
Normal file
|
@ -0,0 +1,30 @@
|
|||
{% extends 'base.html.twig' %}
|
||||
|
||||
{% block title %}OrderItem{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<h1>OrderItem</h1>
|
||||
|
||||
<table class="table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>Id</th>
|
||||
<td>{{ order_item.id }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<td>{{ order_item.name }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Extras</th>
|
||||
<td>{{ order_item.extras }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<a href="{{ path('app_order_item_index') }}">back to list</a>
|
||||
|
||||
<a href="{{ path('app_order_item_edit', {'id': order_item.id}) }}">edit</a>
|
||||
|
||||
{{ include('order_item/_delete_form.html.twig') }}
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue