show.html.twig
1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{% extends 'base.html.twig' %}
{% block body %}
<h1>Ambiente</h1>
<table class="table table-bordered">
<tbody>
<tr>
<th>Id</th>
<td>{{ ambiente.id }}</td>
</tr>
<tr>
<th>Descripcion</th>
<td>{{ ambiente.descripcion }}</td>
</tr>
<tr>
<th>Codigo</th>
<td>{{ ambiente.codigo }}</td>
</tr>
<tr>
<th>Direccion</th>
<td>{{ ambiente.direccion }}</td>
</tr>
<tr>
<th>Coordenadautmnorte</th>
<td>{{ ambiente.coordenadaUtmNorte }}</td>
</tr>
<tr>
<th>Coordenadautmoeste</th>
<td>{{ ambiente.coordenadaUtmOeste }}</td>
</tr>
</tbody>
</table>
<ul>
<a href="{{ path('ambiente_index') }}" <span class="glyphicon glyphicon-arrow-left">Atras</span></a>
   
<a href="{{ path('ambiente_edit', { 'id': ambiente.id }) }}"><span class="glyphicon glyphicon-edit">Editar</span></a>
   
<a href="{{ path('ambiente_edit', { 'id': ambiente.id }) }}"><span class="glyphicon glyphicon-trash">Eliminar </span></a>
{{ form_end(delete_form) }}
{#<input type="submit" value="Eliminar">
{{ form_end(delete_form) }}#}
</li>
</ul>
{% endblock %}