{# sin dependencias #} {% set tareaanterior=null %} {% set tareacurrent=tarea[0] %} {% set tareas=tarea[0].getProcesosId.getTarea|sort((a, b) => a.position <=> b.position) %} {% for tareadep in tareas %} {% if not tareadep.invisible %} {% for tusuario in tareadep.getTareaUsuario %} {% if tusuario.greenEntrepreneur.id==app.user.id %} {% if tusuario.completada==true %} {% if tareadep.position < tareacurrent.position %} {% set tareaanterior=tareadep %} {% endif %} {% endif %} {% endif %} {% endfor %} {% endif %} {% endfor %}
{% if tareaanterior is defined and tareaanterior is not null %} {% if tareaanterior.position < tarea[0].position %} {{'Previous'|trans({})}} {% else %} {% endif %} {% else %} {% endif %} {{'Save'|trans({})}} {{'Next'|trans({})}}