49 lines
2.5 KiB
Twig
49 lines
2.5 KiB
Twig
{% macro statusForm(report,reportToDoList,reportEnum) %}
|
|
<form action="{{ path('app_set_status_todo',{id:report.id}) }}" method="post">
|
|
<input type="hidden" name="token" value="{{ csrf_token('report-status') }}">
|
|
<div class="btn-group" role="group" aria-label="Todos">
|
|
{% for todo in reportToDoList %}
|
|
<button type="submit" class="btn-check" name="{{ todo.value }}" value='1' id="checkboxToDo{{ todo.value }}Id{{ report.id }}"></button>
|
|
{# <input onchange="this.form.submit()"#}
|
|
{# name="{{ todo.value }}"#}
|
|
{# type="checkbox"#}
|
|
{# class="btn-check"#}
|
|
{# id="checkboxToDo{{ todo.value }}Id{{ report.id }}"#}
|
|
{# {% if report.isReportsTodo(todo) %}#}
|
|
{# checked="checked"#}
|
|
{# {% endif %}#}
|
|
{# {% if not is_granted('reportEdit') %}#}
|
|
{# disabled#}
|
|
{# {% endif %}#}
|
|
{# autocomplete="off"#}
|
|
{# >#}
|
|
<label class="btn
|
|
{% if report.isReportsTodo(todo) %}
|
|
btn-{{ reportEnum.checkboxColor }}
|
|
{% else %}
|
|
btn-outline-{{ reportEnum.checkboxColor }}
|
|
{% endif %}
|
|
d-flex align-items-center"
|
|
for="checkboxToDo{{ todo.value }}Id{{ report.id }}"
|
|
data-toggle="tooltip" data-placement="bottom" title="{{ todo.takeLang }}">
|
|
<i class="fa fa-solid fa-{{ todo.takeIcon }}"> </i>
|
|
</label>
|
|
{% endfor %}
|
|
</div>
|
|
</form>
|
|
{% endmacro %}
|
|
|
|
{% macro progress(report, countAllTodos) %}
|
|
<div class="progress">
|
|
{% set percentageProgress = report.isDone ? 100 : report.countTodoReports / countAllTodos * 100 %}
|
|
<div class="progress-bar progress-bar-striped bg-info"
|
|
role="progressbar"
|
|
aria-valuenow="{{ report.countTodoReports }}"
|
|
aria-valuemin="0"
|
|
aria-valuemax="{{ countAllTodos }}"
|
|
style="width: {{ percentageProgress }}%"
|
|
>
|
|
<strong>{{ percentageProgress }}%</strong>
|
|
</div>
|
|
</div>
|
|
{% endmacro %} |