<div class="index-toolbar">
<div class="index-search">
<span class="index-search-icon">🔍</span>
<input type="text" placeholder="{{ search_placeholder }}" class="index-search-input" aria-label="{{ search_placeholder }}">
</div>
<div class="index-toolbar-center">
<div class="date-chips" role="group" aria-label="Date range presets">
<button type="button" class="date-chip date-chip--active" data-date-preset="all" aria-pressed="true">All time</button>
<button type="button" class="date-chip" data-date-preset="today" aria-pressed="false">Today</button>
<button type="button" class="date-chip" data-date-preset="7days" aria-pressed="false">Last 7 days</button>
<button type="button" class="date-chip" data-date-preset="30days" aria-pressed="false">Last 30 days</button>
</div>
<span class="toolbar-divider" aria-hidden="true"></span>
<div class="date-picker">
<input type="date" class="date-picker-from" aria-label="From date">
<span class="date-picker-sep">–</span>
<input type="date" class="date-picker-to" aria-label="To date">
</div>
</div>
{% if show_view_switcher %}
<div class="view-switcher" role="radiogroup" aria-label="View mode">
<button type="button" class="view-switcher-btn view-switcher-btn--grid" data-view-mode="cards" aria-pressed="true" aria-label="Grid view">
<svg class="view-switcher-icon" width="16" height="16" viewBox="0 0 16 16" fill="currentColor">
<rect x="1" y="1" width="4" height="4" rx="1"/>
<rect x="7" y="1" width="4" height="4" rx="1"/>
<rect x="13" y="1" width="2" height="4" rx="1"/>
<rect x="1" y="7" width="4" height="4" rx="1"/>
<rect x="7" y="7" width="4" height="4" rx="1"/>
<rect x="13" y="7" width="2" height="4" rx="1"/>
<rect x="1" y="13" width="4" height="2" rx="1"/>
<rect x="7" y="13" width="4" height="2" rx="1"/>
<rect x="13" y="13" width="2" height="2" rx="1"/>
</svg>
</button>
<button type="button" class="view-switcher-btn view-switcher-btn--list" data-view-mode="list" aria-pressed="false" aria-label="List view">
<svg class="view-switcher-icon" width="16" height="16" viewBox="0 0 16 16" fill="currentColor">
<rect x="2" y="2" width="12" height="3" rx="1"/>
<rect x="2" y="7" width="12" height="3" rx="1"/>
<rect x="2" y="12" width="12" height="3" rx="1"/>
</svg>
</button>
</div>
{% endif %}
</div>