show.html.twig
1.36 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
{% extends "UBVPrincipalBundle::inicio.html.twig" %}
{% block contenido %}
<h1>Lista de Objetivos</h1>
<div class="row">
<div class="col-lg-12">
<div class="portlet">
<div class="portlet-header">
<div class="caption">Listado de Objetivos</div>
</div>
</div>
</div>
</div>
<div class="table-responsive mtl">
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<tbody>
<tr>
<th>Id</th>
<td>{{ objetivoPlanPatrium.id }}</td>
</tr>
<tr>
<th>Indice_objetivo</th>
<td>{{ objetivoPlanPatrium.indiceobjetivo }}</td>
</tr>
<tr>
<th>Descripcion</th>
<td>{{ objetivoPlanPatrium.descripcion }}</td>
</tr>
</tbody>
</table>
<ul>
<li>
<a href="{{ path('objetivoplanpatria_index') }}">Back to the list</a>
</li>
<li>
<a href="{{ path('objetivoplanpatria_edit', { 'id': objetivoPlanPatrium.id }) }}">Edit</a>
</li>
<li>
{{ form_start(delete_form) }}
<input type="submit" value="Delete">
{{ form_end(delete_form) }}
</li>
</ul>
{% endblock %}