clubmanager/templates/components/management_fragment.rs.html

23 lines
943 B
HTML

@use super::return_to_main_html;
@()
<main class="grid grid-rows-6 grid-cols-3 grid-flow-col h-full">
<div class="fixed right-0 top-0 pr-4 pt-4">
@:return_to_main_html()
</div>
<div hx-boost="true" class="flex justify-center items-center">
<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">
<button type="button">Dancers</button>
</a>
</div>
<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">
<button type="button">Shift Reports</button>
</a>
</div>
</main>