youtube_live_calendar/views/admin/schedule.ejs

46 lines
1.6 KiB
Plaintext

<!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>
<%- include("../partials/admin/header") %>
<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>