2024-12-27 12:00:54 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="ja">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link rel="stylesheet" href="/css/hyAdmin/common.css">
|
|
|
|
</head>
|
|
|
|
<%- include("../partials/head") %>
|
|
|
|
<body>
|
2025-01-03 12:46:33 +00:00
|
|
|
<%- include("../partials/admin/header") %>
|
2024-12-27 12:00:54 +00:00
|
|
|
<div class="header-spacer"></div>
|
|
|
|
<div class="main-content">
|
|
|
|
<h1>配信スケジュール管理</h1>
|
|
|
|
<table class="admin-table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>ID</th>
|
|
|
|
<th>チャンネル名</th>
|
|
|
|
<th>タイトル</th>
|
|
|
|
<th>配信開始時刻</th>
|
|
|
|
<th>操作</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<% liveSchedules.forEach(schedule => { %>
|
|
|
|
<tr>
|
|
|
|
<td><%= schedule.id %></td>
|
|
|
|
<td><%= schedule.Channel ? schedule.Channel.name : "N/A" %></td>
|
|
|
|
<td><%= schedule.title %></td>
|
|
|
|
<td><%= dayjs(schedule.start_time).tz("Asia/Tokyo").format("YYYY-MM-DD HH:mm") %></td>
|
|
|
|
<td>
|
|
|
|
<form action="/hyAdmin/schedule/<%= schedule.id %>/edit" method="GET" style="display:inline;">
|
|
|
|
<button class="btn btn-edit">編集</button>
|
|
|
|
</form>
|
|
|
|
<form action="/hyAdmin/schedule/<%= schedule.id %>?_method=DELETE" method="POST" style="display:inline;">
|
|
|
|
<button class="btn btn-delete" onclick="return confirm('本当に削除しますか?');">削除</button>
|
|
|
|
</form>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<% }) %>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|