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.
16 lines
841 B
16 lines
841 B
{% set tareaid='#' %}
|
|
{% set tareas=tarea[0].getProcesosId.getTarea|sort((a, b) => a.position <=> b.position) %}
|
|
{% for tarea in tareas %}
|
|
{% if tarea.getTemplateId.getFilename=='admin/canvas_view.html.twig' %}
|
|
{% for tusuario in tarea.getTareaUsuario %}
|
|
{% if tusuario.greenEntrepreneur.id==app.user.id %}
|
|
{% if tusuario.completada==true %}
|
|
{% set tareaid=tarea.id %}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% if tareaid != '#' %}
|
|
<a id="link-canvas" class="tarea-link" data-target="#revisionTareaModal" data-toggle="modal" href="#" data-iframesrc="{{ path('admin.procesos.realizartarea',{'id':tareaid, 'modal': 1}) }}" href="#"><img src="{{asset('/images/gbc-icon.png')}}" alt="{{'Canvas Visualization'|trans({})}}" width="50px"/></a>
|
|
{% endif %}
|