show.html.twig
2.98 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{% extends 'UBVPrincipalBundle::inicio.html.twig' %}
{% block contenido %}
<div class="row">
<div class="col-lg-12">
<div class="portlet">
<div class="portlet-header">
<div class="caption">Confirmacion</div>
</div>
<table class="table table-striped table-bordered table-hover">
<tbody>
<tr>
<th>Id</th>
<td>{{ candidato.id }}</td>
</tr>
<tr>
<th>Primer_nombre</th>
<td>{{ candidato.primernombre }}</td>
</tr>
<tr>
<th>Segundo_nombre</th>
<td>{{ candidato.segundonombre }}</td>
</tr>
<tr>
<th>Primer_apellido</th>
<td>{{ candidato.primerapellido }}</td>
</tr>
<tr>
<th>Segundo_apellido</th>
<td>{{ candidato.segundoapellido }}</td>
</tr>
<tr>
<th>Identificacion</th>
<td>{{ candidato.identificacion }}</td>
</tr>
<tr>
<th>Fecha_nacimiento</th>
<td>{% if candidato.fechanacimiento %}{{ candidato.fechanacimiento|date('d-m-Y') }}{% endif %}</td>
</tr>
<tr>
<th>Telefono</th>
<td>{{ candidato.telefono }}</td>
</tr>
<tr>
<th>Correo</th>
<td>{{ candidato.correo }}</td>
</tr>
<tr>
<th>Id_opsu</th>
<td>{{ candidato.idopsu }}</td>
</tr>
<tr>
<th>Ano_grado</th>
<td>{% if candidato.anogrado %}{{ candidato.anogrado|date('d-m-Y') }}{% endif %}</td>
</tr>
<tr>
<th>Trabaja</th>
<td>{% if candidato.trabaja %}Yes{% else %}No{% endif %}</td>
</tr>
<tr>
<th>Promedio_nota</th>
<td>{{ candidato.promedionota }}</td>
</tr>
<<<<<<< HEAD
{# <tr>
<th>Periodo_asignado</th>
<td>{{ candidato.periodoasignado }}</td>
</tr> #}
=======
>>>>>>> 0fb5c794c98b176e258390c68689e4115d21b25e
</tbody>
</table>
<ul>
<a href="{{ path('candidato_index') }}">
<button type="button" class="btn btn-primary mrs"><i
class="fa fa-filter"></i> Pagina Principal
</button>
</a>
<a href="{{ path('candidato_edit', { 'id': candidato.id }) }}"> <button type="button" class="btn btn-primary mrs"><i
class="fa fa-filter"></i> Editar
</button>
</a>
{{ form_start(delete_form) }}
<input type="submit" value="Delete">
{{ form_end(delete_form) }}
</ul>
{% endblock %}