Initial commit
This commit is contained in:
28
templates/_dashboard/grid/.show.html.twig
Normal file
28
templates/_dashboard/grid/.show.html.twig
Normal file
@ -0,0 +1,28 @@
|
||||
{% extends 'base.html.twig' %}
|
||||
|
||||
{% block body %}
|
||||
<h1>Grid</h1>
|
||||
|
||||
<table class="table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>Id</th>
|
||||
<td>{{ grid.id }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Row</th>
|
||||
<td>{{ grid.row }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Col</th>
|
||||
<td>{{ grid.col }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<a href="{{ path('bo_region_grid_index', {'regionId': region.id}) }}">back to list</a>
|
||||
|
||||
<a href="{{ path('bo_region_grid_edit', {'regionId': region.id, 'id': grid.id}) }}">edit</a>
|
||||
|
||||
{{ include('_dashboard/grid/_delete_form.html.twig') }}
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user