add highlight report

This commit is contained in:
2025-09-27 21:09:59 +02:00
parent ed1d991a84
commit 2eb770a328
11 changed files with 207 additions and 7 deletions
@@ -120,6 +120,21 @@
</div>
{% endif %}
</div>
<div class="card">
<div class="card-header text-center"><h2>Oznaczenie</h2></div>
<div class="card-body">
<form action="{{ path('app_client_highlight',{id: client.id}) }}" method="post">
<input type="hidden" name="token" value="{{ csrf_token('client-highlight') }}">
{% for status in highlightStatus %}
<button type="submit" name="highlight_id" value="{{ status.value }}" class="btn btn-{{ status.borderColor }}">
{{ status.buttonLang }}
</button>
{% endfor %}
</form>
</div>
</div>
</div>
</div>