show.html.twig 3.27 KB
{% 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>&nbsp; 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>&nbsp; Editar
                  </button>
                </a>
                        
                   {{ form_start(delete_form) }}
                <input type="submit" value="Delete">
            {{ form_end(delete_form) }}
       
    </ul>







{% endblock %}