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.
18 lines
678 B
18 lines
678 B
{% extends sonata_block.templates.block_base %}
|
|
|
|
{% block block %}
|
|
{% block progreso %}
|
|
<div class="progress-wrapper">
|
|
<div class="progress-column">
|
|
{% if procesos and procesos|length > 0 %}
|
|
{% for proceso in procesos %}
|
|
{{ include('dashboard/progress/single_progress.html.twig', {proceso: proceso}) }}
|
|
{% endfor %}
|
|
{% else %}
|
|
<p>{{ 'No has comenzado ningun proceso'|trans({}, 'dashboard') }}</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
{% endblock %}
|