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.
27 lines
936 B
27 lines
936 B
{% extends sonata_block.templates.block_base %}
|
|
|
|
{% block block %}
|
|
{% block stats %}
|
|
<style>.dashboard-grid {
|
|
display: grid;
|
|
grid-template-columns: 100%;
|
|
grid-template-rows: auto;
|
|
grid-template-areas:
|
|
"top-left top-right"
|
|
"down-left down-right";
|
|
grid-gap: 15px;
|
|
}</style>
|
|
<div class="stats-wrapper" >
|
|
<div class="container-fluid">
|
|
<div class="row" style="display: flex;flex-wrap: wrap;">
|
|
{% if stats and stats|length > 0 %}
|
|
{% for stat in stats %}
|
|
{{ include('dashboard/stats/single_stat.html.twig', {stat: stat}) }}
|
|
{% endfor %}
|
|
{% else %}
|
|
<p>{{ 'No has comenzado ningun proceso'|trans({}, 'dashboard') }}</p>
|
|
{% endif %}
|
|
</div>
|
|
</div></div>
|
|
{% endblock %}
|
|
{% endblock %}
|