{% extends 'base.html.twig' %}
{% block body %}
<h1>Mis publicaciones</h1>
<em>Recuerde que las publicaciones se transpasan automáticamente a Siding una vez validadas</em>
<!-- Nav tabs -->
<ul class="nav nav-tabs" id="myTab" role="tablist">
{% for year, publications in groupedPublications %}
<li class="nav-item" role="presentation">
<a class="nav-link {% if loop.first %}active{% endif %}" id="tab-{{ year }}" data-bs-toggle="tab" href="#content-{{ year }}" role="tab" aria-controls="content-{{ year }}" aria-selected="{% if loop.first %}true{% else %}false{% endif %}">
{{ year }}
</a>
</li>
{% endfor %}
</ul>
<!-- Tab panes -->
<div class="tab-content" id="myTabContent">
{% for year, publications in groupedPublications %}
<div class="tab-pane fade {% if loop.first %}show active{% endif %}" id="content-{{ year }}" role="tabpanel" aria-labelledby="tab-{{ year }}">
<h2 class="mt-3">Publicaciones del año {{ year }}</h2>
<table class="table datatable-basic">
<thead>
<tr>
<th>Nombre</th>
<th>Año Publicación</th>
<th>Doi</th>
<th>Estado validación</th>
<th>Comentarios</th>
</tr>
</thead>
<tbody>
{% for publication in publications %}
<tr>
<td>{{ publication.title }}</td>
<td>{{ publication.publishedYear }}</td>
<td>{{ publication.doi }}</td>
<td>
{% if publication.validated %}
Validada
{% else %}
por validar
{% endif %}
</td>
<td>{{ publication.publicComments }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endfor %}
</div>
{#
<table class="table datatable-basic">
<thead>
<tr>
<th>Nombre</th>
<th>Año Publicación</th>
<th>Doi</th>
<th>Estado validación</th>
<th>Comentarios</th>
</tr>
</thead>
<tbody>
{% for publication in publications %}
{% if publication.publishedYear == 2023 %}
<tr>
<td>{{ publication.title }}</td>
<td>{{ publication.publishedYear }}</td>
<td>{{ publication.doi }}</td>
<td>{% if publication.validated %} Validada {% else %} por validar {% endif %}</td>
<td>
<!--<a href="{{ path('publication_percentage', {'id': publication.id}) }}" class="btn-ing btn">porcentajes de participación</a>-->
{#<button type="button" class="btn btn-ing" data-bs-toggle="modal" data-bs-target="#exampleModal">
porcentajes de participación
</button>#}{#
{{ publication.publicComments}}
</td>
</tr>
{% endif %}
{% else %}
<tr>
<td colspan="13">No hay publicaciones registradas</td>
</tr>
{% endfor %}
</tbody>
</table>
#}
<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Declaración de de porcentajes no disponibles</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
Dado que aún estamos en la carga de publicaciones por los profesores en sus perfiles WOS, la declaración de porcentajes de participación no está disponible.<br>
Pronto podrá validar su porcentaje de participación para todas sus publicaciones 2023.
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Ok, gracias</button>
</div>
</div>
</div>
</div>
{#% if is_granted('ROLE_ADMIN') %}
<a href="{{ path('publication_new') }}" class="btn btn-danger">Ingresar publicación manualmente</a>
{% endif %#}
{% endblock %}
{% block javascripts %}
{{ parent() }}
{{ encore_entry_script_tags('tables') }}
{% endblock %}