2024-07-22 12:05:20 +00:00
|
|
|
{{template "admin" .}}
|
|
|
|
|
|
|
|
{{define "page-title"}}
|
|
|
|
Reservations Calendar
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
{{define "content"}}
|
2024-07-26 11:40:56 +00:00
|
|
|
{{$now := index .Data "now"}}
|
|
|
|
{{$rooms := index .Data "rooms"}}
|
|
|
|
{{$dim := index .IntMap "days_in_month"}}
|
2024-07-27 20:39:23 +00:00
|
|
|
{{$curMonth := index .StringMap "this_month"}}
|
|
|
|
{{$curYear := index .StringMap "this_month_year"}}
|
2024-07-22 12:05:20 +00:00
|
|
|
<div class="col-md-12">
|
2024-07-26 08:18:27 +00:00
|
|
|
<div class="text-center">
|
2024-07-26 11:40:56 +00:00
|
|
|
<h3>{{formatDate $now "January"}} {{formatDate $now "2006"}}</h3>
|
2024-07-26 08:18:27 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="float-start">
|
|
|
|
<a class="btn btn-sm btn-outline-secondary"
|
|
|
|
href="/admin/reservations-calendar?y={{index .StringMap "last_month_year"}}&m={{index .StringMap "last_month"}}"><<</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="float-end">
|
|
|
|
<a class="btn btn-sm btn-outline-secondary"
|
|
|
|
href="/admin/reservations-calendar?y={{index .StringMap "next_month_year"}}&m={{index .StringMap "next_month"}}">>></a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="clearfix"></div>
|
2024-07-26 11:40:56 +00:00
|
|
|
{{range $rooms}}
|
|
|
|
{{$roomId := .ID}}
|
|
|
|
<h4 class="mt-4">{{.RoomName}}</h4>
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-bordered table-sm">
|
|
|
|
<tr class="table-dark">
|
|
|
|
{{range $index := iterate $dim}}
|
|
|
|
<td class="text-center">
|
|
|
|
{{add $index 1}}
|
|
|
|
</td>
|
|
|
|
{{end}}
|
|
|
|
</tr>
|
|
|
|
<tr class="table-light">
|
|
|
|
{{range $index := iterate $dim}}
|
|
|
|
<td class="text-center">
|
|
|
|
<input type="checkbox" name="checked" value="">
|
|
|
|
</td>
|
|
|
|
{{end}}
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2024-07-22 12:05:20 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|