many corrections in twig templates

This commit is contained in:
2021-07-14 21:01:46 +02:00
parent d35553a1e2
commit 82c79a17dd
17 changed files with 887 additions and 812 deletions

View File

@@ -27,16 +27,23 @@
{% macro row(task) %}
{% endmacro %}
{% block filtertasks %}
{% if person is not null %}
{% block personcontent %}
{% include 'ChillTaskBundle:SingleTask:_list.html.twig' %}
<div class="tasks">
<div class="row justify-content-center">
<div class="col-md-10 col-xxl">
{% include 'ChillTaskBundle:SingleTask:_list.html.twig' %}
</div>
</div>
</div>
{% endblock %}
{% else %}
{% block content %}
<div class="col-8 col-md-9 offset-md-1">
{% include 'ChillTaskBundle:SingleTask:_list.html.twig' %}
<div class="col-md-10 col-xxl">
<div class="tasks my-5">
{% include 'ChillTaskBundle:SingleTask:_list.html.twig' %}
</div>
</div>
{% endblock %}
{% endif %}