{% if acceso['proyecto']['ver']%}
<div class="tab-pane fade active show" id="datos" role="tabpanel">
<div class="card">
<div class="card-header">
<div class="card-actions float-right">
<div class="dropdown position-relative">
{% if acceso['proyecto']['crud']%}
<a href="#" data-toggle="dropdown" data-bs-display="static">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-more-horizontal align-middle"><circle cx="12" cy="12" r="1"></circle><circle cx="19" cy="12" r="1"></circle><circle cx="5" cy="12" r="1"></circle></svg>
</a>
<div class="dropdown-menu dropdown-menu-right">
{% if proyecto.multiple %}
<a class="dropdown-item" href="{{ path('app_comun_proyecto_new',{'proyectopadre':proyecto.id}) }}"">{{ 'proyecto.nuevoSubproyecto'|trans }}</a>
{% endif %}
<a class="dropdown-item" href="{{ path('app_comun_proyecto_edit',{'id':proyecto.id}) }}">{{ 'proyecto.editar'| trans}}</a>
<a class="dropdown-item" href="{{ path('app_comun_proyecto_finalizar',{'id':proyecto.id}) }}">{{ 'proyecto.finalizar'| trans}}</a>
<a class="dropdown-item {{eliminable}}" href="{{ path('app_comun_proyecto_delete',{'id':proyecto.id}) }}">{{ 'comun.eliminar'| trans}}</a>
</div>
{% endif %}
</div>
</div>
<h5 class="card-title mb-0">{{ 'proyecto.datos'|trans }}</h5>
</div>
<div class="card-body">
<table class="table table-striped">
<tbody>
<tr>
<th>{{ 'proyecto.nombre'|trans }}</th>
<td>{{ proyecto.nombre }}</td>
</tr>
<tr>
<th>{{ 'proyecto.cliente'|trans }}</th>
<td>{{ proyecto.cliente }}</td>
</tr>
<tr>
<th>{{ 'proyecto.responsable'|trans }}</th>
<td>{{ proyecto.responsable }}</td>
</tr>
<tr>
<th>{{ 'proyecto.fechaInicio'|trans }}</th>
<td>{{ proyecto.fechaInicio ? proyecto.fechaInicio|date('comun.fechaFormato'|trans) : '' }}</td>
</tr>
<tr>
<th>{{ 'proyecto.financiacion'|trans }}</th>
{% if proyecto.proyectos |length == 0 %}
<td>{{ proyecto.financiacion |number_format(2, ',', '.') }}€</td>
{% else %}
<td>{{ proyecto.financiacion |number_format(2, ',', '.') }}€ | {{ 'proyecto.restante'|trans }} {{ restante |number_format(2, ',', '.')}}€</td>
{% endif %}
</tr>
<tr>
<th>{{ 'proyecto.area'|trans }}</th>
<td>{{ proyecto.area}}</td>
</tr>
<tr>
<th>{{ 'proyecto.servicio'|trans }}</th>
<td>{{ proyecto.servicio }}</td>
</tr>
<tr>
<th>{{ 'proyecto.estado'|trans }}</th>
<td>{{ proyecto.estadoToString|trans }}</td>
</tr>
{% if proyecto.padre is not null %}
<tr>
<th>{{ 'proyecto.padre'|trans }}</th>
<td><a href="{{ path('app_comun_proyecto_show',{'id':proyecto.padre.id}) }}">{{ proyecto.padre}}</a></td>
</tr>
{% else %}
{% if proyecto.proyectos |length > 0 %}
<tr>
<th>{{ 'proyecto.subproyectos'|trans }}</th>
<td> {% for proyectohijo in proyecto.proyectos %}
<a href="{{ path('app_comun_proyecto_show',{'id':proyectohijo.id}) }}">{{ proyectohijo }}</a>
{% endfor %}</td>
</tr>
{% endif %}
{% endif %}
</tbody>
</table>
</div>
</div>
</div>
{% endif %}