2023-04-28 18:55:51 +02:00
|
|
|
{% if loggedin_user.is_cox %}
|
2023-07-30 14:33:50 +02:00
|
|
|
<div class="sm:col-span-2 lg:col-span-3 grid md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-5 gap-3">
|
|
|
|
<button type="button" title="Toggle View" class="group btn btn-primary filter-trips-js" data-action="filter-days" id="filterdays-js" aria-pressed="false">
|
|
|
|
{% include "includes/funnel-icon" %}
|
|
|
|
Tage mit Ausfahrten
|
|
|
|
</button>
|
|
|
|
<button type="button" title="Toggle View" class="group btn btn-primary filter-trips-js" data-action="filter-coxs" id="filtertrips-js" aria-pressed="false">
|
|
|
|
{% include "includes/funnel-icon" %}
|
|
|
|
Steuerleute gesucht
|
|
|
|
</button>
|
|
|
|
<button type="button" title="Toggle View" class="group btn btn-primary filter-trips-js" data-action="filter-months" id="filtermonth-js" aria-pressed="false" data-month="{{ now() | date(format='%m') }}">
|
|
|
|
{% include "includes/funnel-icon" %}
|
|
|
|
Aktuellen Monat anzeigen
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|