show.html.twig
1.27 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
{% extends 'base.html.twig' %}
{% block body %}
<h1>Personaproyecto</h1>
<table>
<tbody>
<tr>
<th>Id</th>
<td>{{ personaProyecto.id }}</td>
</tr>
<tr>
<th>Identificacion</th>
<td>{{ personaProyecto.identificacion }}</td>
</tr>
<tr>
<th>Nombre</th>
<td>{{ personaProyecto.nombre }}</td>
</tr>
<tr>
<th>Apellido</th>
<td>{{ personaProyecto.apellido }}</td>
</tr>
<tr>
<th>Correo</th>
<td>{{ personaProyecto.correo }}</td>
</tr>
<tr>
<th>Telefono</th>
<td>{{ personaProyecto.telefono }}</td>
</tr>
</tbody>
</table>
<ul>
<li>
<a href="{{ path('personaproyecto_index') }}">Back to the list</a>
</li>
<li>
<a href="{{ path('personaproyecto_edit', { 'id': personaProyecto.id }) }}">Edit</a>
</li>
<li>
{{ form_start(delete_form) }}
<input type="submit" value="Delete">
{{ form_end(delete_form) }}
</li>
</ul>
{% endblock %}