|
@@ -93,7 +93,7 @@
|
|
|
<select id="data-focus-select" data-focus-select
|
|
<select id="data-focus-select" data-focus-select
|
|
|
class="rounded border border-slate-300 px-2 py-1 text-sm bg-white focus:outline-none focus:ring-2 focus:ring-slate-400 dark:bg-slate-800 dark:border-slate-600 dark:text-slate-100 dark:focus:ring-slate-500">
|
|
class="rounded border border-slate-300 px-2 py-1 text-sm bg-white focus:outline-none focus:ring-2 focus:ring-slate-400 dark:bg-slate-800 dark:border-slate-600 dark:text-slate-100 dark:focus:ring-slate-500">
|
|
|
<option value="">All workers</option>
|
|
<option value="">All workers</option>
|
|
|
- {% for sw in sprintWorkers %}
|
|
|
|
|
|
|
+ {% for sw in sprintWorkers|sort((a, b) => a.workerName <=> b.workerName) %}
|
|
|
<option value="{{ sw.id }}">{{ sw.workerName }}</option>
|
|
<option value="{{ sw.id }}">{{ sw.workerName }}</option>
|
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
</select>
|
|
</select>
|