clubmanager/templates/components/management_fragment.rs.html

20 lines
382 B
HTML
Raw Normal View History

2023-11-05 15:20:09 +00:00
@use super::return_to_main_html;
2023-11-05 14:42:19 +00:00
@()
<main>
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-05 14:49:25 +00:00
<div hx-boost="true">
2023-11-05 15:16:44 +00:00
<a href="/management/dancers">
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-05 14:42:19 +00:00
<div hx-boost="true">
<a href="/shift_reports">
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>