Licitator 1.0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
575 B

<div class="loader"></div>
{% if tareasPend is defined and tareasPend | length > 0 %}
<ul class="tarea-list">
{% for tarea in tareasPend %}
<li>
<a data-target="#revisionTareaModal" data-toggle="modal" class="tarea-link" href="#" data-iframesrc="{{ path('realizar_tarea_comentar', {id:tarea.id, userge:userId, modal:1}) }}" >
{{ tarea.nombre }}
</a>
</li>
{% endfor %}
</ul>
{% else %}
<p>{{ 'No tienes nada pendiente de revisar'|trans({}, 'dashboard') }}</p>
{% endif %}