show.html.twig
3.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
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
96
97
98
99
100
101
102
103
104
105
106
{% 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>{{ proyecto.id }}</td>
</tr>
<tr>
<th>Titulo</th>
<td>{{ proyecto.titulo }}</td>
</tr>
<tr>
<th>Objetivo_general</th>
<td>{{ proyecto.objetivogeneral }}</td>
</tr>
<tr>
<th>Descripcion</th>
<td>{{ proyecto.descripcion }}</td>
</tr>
<tr>
<th>Beneficiarios_directos</th>
<td>{{ proyecto.beneficiariosdirectos }}</td>
</tr>
<tr>
<th>Beneficiarios_indirectos</th>
<td>{{ proyecto.beneficiariosindirectos }}</td>
</tr>
<tr>
<th>Fecha_inicio</th>
<td>{% if proyecto.fechainicio %}{{ proyecto.fechainicio|date('d-m-Y') }}{% endif %}</td>
</tr>
<tr>
<th>Fecha_fin</th>
<td>{% if proyecto.fechafin %}{{ proyecto.fechafin|date('d-m-Y') }}{% endif %}</td>
</tr>
<tr>
<th>Vinculacion_plan_patria</th>
<td>{{ proyecto.vinculacionplanpatria }}</td>
</tr>
<tr>
<th>Proyectos_estrategicos</th>
<td>{{ proyecto.proyectosestrategicos }}</td>
</tr>
<tr>
<th>Proyectocol</th>
<td>{{ proyecto.proyectocol }}</td>
</tr>
<tr>
<th>Direccion</th>
<td>{{ proyecto.direccion }}</td>
</tr>
<tr>
<th>Coordenada_latitud</th>
<td>{{ proyecto.coordenadalatitud }}</td>
</tr>
<tr>
<th>Coordenada_longitud</th>
<td>{{ proyecto.coordenadalongitud }}</td>
</tr>
<tr>
<th>Fecha_registro</th>
<td>{% if proyecto.fecharegistro %}{{ proyecto.fecharegistro|date('d-m-Y') }}{% endif %}</td>
</tr>
<tr>
<th>Resumes_ruta</th>
<td>{{ proyecto.resumesruta }}</td>
</tr>
</tbody>
</table>
<ul>
<a href="{{ path('proyecto_index') }}">
<button type="button" class="btn btn-primary mrs"><i
class="fa fa-filter"></i> Pagina Principal
</button>
</a>
<a href="{{ path('proyecto_edit', { 'id': proyecto.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 %}