スケジュール管理

新しいスケジュール追加

登録済みスケジュール

<% if (schedules.length === 0) { %>

スケジュールが登録されていません

<% } else { %>
<% schedules.forEach(schedule => { %> <% }) %>
施設 日付 時間 定員 現在の予約数 状態 アクション
<%= schedule.facility_name %> <%= new Date(schedule.date).toLocaleDateString('ja-JP') %> <%= schedule.start_time.slice(0,5) %> - <%= schedule.end_time.slice(0,5) %> <%= schedule.max_capacity %>名 <%= schedule.current_reservations %>名 <% if (schedule.current_reservations >= schedule.max_capacity) { %> 満席 <% } else if (!schedule.is_available) { %> 無効 <% } else { %> 受付中 <% } %>
<% } %>