2023-11-05 15:20:09 +00:00
|
|
|
@use super::return_to_main_html;
|
|
|
|
|
2023-11-05 14:42:19 +00:00
|
|
|
@()
|
|
|
|
|
2023-11-15 23:18:00 +00:00
|
|
|
<main class="grid grid-rows-6 grid-cols-3 grid-flow-col h-full">
|
2023-11-05 15:20:09 +00:00
|
|
|
<div class="fixed right-0 top-0 pr-4 pt-4">
|
|
|
|
@:return_to_main_html()
|
2023-11-05 14:42:19 +00:00
|
|
|
</div>
|
2023-11-15 23:18:00 +00:00
|
|
|
<div hx-boost="true" class="flex justify-center items-center">
|
2023-11-17 22:02:14 +00:00
|
|
|
<a href="/management/dancers"
|
|
|
|
class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2">
|
2023-11-05 15:20:09 +00:00
|
|
|
<button type="button">Dancers</button>
|
2023-11-05 14:49:25 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
2023-11-17 22:02:14 +00:00
|
|
|
<div hx-boost="true" class="flex justify-center items-center"
|
|
|
|
class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2">
|
|
|
|
<a href="/shift_reports"
|
|
|
|
class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2">
|
2023-11-05 15:20:09 +00:00
|
|
|
<button type="button">Shift Reports</button>
|
2023-11-05 14:42:19 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</main>
|