569 lines
26 KiB
HTML
Executable File
569 lines
26 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="ja">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>スーパーバイザーパネル</title>
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css" rel="stylesheet">
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/Sortable/1.15.0/Sortable.min.js"></script>
|
|
</head>
|
|
<body class="bg-gray-50">
|
|
<div class="container mx-auto p-4">
|
|
<div class="bg-white rounded-lg shadow-lg p-6 mb-6">
|
|
<h1 class="text-2xl font-bold mb-6">スーパーバイザーパネル</h1>
|
|
|
|
<!-- 選択フォーム -->
|
|
<div class="grid grid-cols-1 md:grid-cols-4 gap-4 mb-6">
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700 mb-2">イベントコード</label>
|
|
<select id="eventCode" class="w-full border border-gray-300 rounded-md px-3 py-2">
|
|
<option value="">イベントを選択してください</option>
|
|
</select>
|
|
</div>
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700 mb-2">ゼッケン番号</label>
|
|
<select id="zekkenNumber" class="w-full border border-gray-300 rounded-md px-3 py-2">
|
|
<option value="">ゼッケン番号を選択してください</option>
|
|
</select>
|
|
</div>
|
|
<div class="bg-gray-50 p-4 rounded-lg">
|
|
<div class="text-sm text-gray-500">チーム名</div>
|
|
<div id="teamName" class="font-semibold"></div>
|
|
</div>
|
|
<div class="bg-gray-50 p-4 rounded-lg">
|
|
<div class="text-sm text-gray-500">メンバー</div>
|
|
<div id="members" class="font-semibold"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- チーム情報サマリー -->
|
|
<div class="grid grid-cols-2 md:grid-cols-4 gap-4 mb-6">
|
|
<div class="bg-gray-50 p-4 rounded-lg">
|
|
<div class="text-sm text-gray-500">スタート時刻</div>
|
|
<div id="startTime" class="font-semibold"></div>
|
|
</div>
|
|
<div class="bg-gray-50 p-4 rounded-lg">
|
|
<div class="text-sm text-gray-500">ゴール時刻</div>
|
|
<div id="goalTime" class="font-semibold"></div>
|
|
</div>
|
|
<div class="bg-gray-50 p-4 rounded-lg">
|
|
<div class="text-sm text-gray-500">ゴール時計</div>
|
|
<div id="goalTime" class="font-semibold"></div>
|
|
</div>
|
|
<div class="bg-gray-50 p-4 rounded-lg">
|
|
<div class="text-sm text-gray-500">判定</div>
|
|
<div id="validate" class="font-semibold text-blue-600"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="grid grid-cols-2 md:grid-cols-4 gap-4 mb-6">
|
|
<div class="bg-gray-50 p-4 rounded-lg">
|
|
<div class="text-sm text-gray-500">CP合計</div>
|
|
<div id="totalPoints" class="font-semibold"></div>
|
|
</div>
|
|
<div class="bg-gray-50 p-4 rounded-lg">
|
|
<div class="text-sm text-gray-500">買物合計</div>
|
|
<div id="buyPoints" class="font-semibold"></div>
|
|
</div>
|
|
<div class="bg-gray-50 p-4 rounded-lg">
|
|
<div class="text-sm text-gray-500">遅刻減点</div>
|
|
<div id="latePoints" class="font-semibold text-red-600"></div>
|
|
</div>
|
|
<div class="bg-gray-50 p-4 rounded-lg">
|
|
<div class="text-sm text-gray-500">総合計</div>
|
|
<div id="finalPoints" class="font-semibold text-blue-600"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- チェックインデータテーブル -->
|
|
<div class="overflow-x-auto">
|
|
<table class="min-w-full divide-y divide-gray-200">
|
|
<thead class="bg-gray-50">
|
|
<tr>
|
|
<th class="px-2 py-3 text-left text-xs font-medium text-gray-500 uppercase">走行順</th>
|
|
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">規定写真</th>
|
|
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">撮影写真</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">CP名称</th>
|
|
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">通過時刻</th>
|
|
<th class="px-2 py-3 text-left text-xs font-medium text-gray-500 uppercase">通過審査</th>
|
|
<th class="px-2 py-3 text-left text-xs font-medium text-gray-500 uppercase">買物審査</th>
|
|
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">獲得点数</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="checkinList" class="bg-white divide-y divide-gray-200">
|
|
<!-- JavaScript で動的に生成 -->
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<!-- アクションボタン -->
|
|
<div class="mt-6 flex justify-end space-x-4">
|
|
<button onclick="showAddCPModal()" class="px-4 py-2 bg-blue-500 text-white rounded">
|
|
新規CP追加
|
|
</button>
|
|
<button id="saveButton" class="px-4 py-2 bg-blue-600 text-white rounded hover:bg-blue-700">
|
|
保存
|
|
</button>
|
|
<button id="exportButton" class="px-4 py-2 bg-green-600 text-white rounded hover:bg-green-700">
|
|
通過証明書出力
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
// APIのベースURLを環境に応じて設定
|
|
const API_BASE_URL = '/api';
|
|
|
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
// Sortable初期化
|
|
const checkinList = document.getElementById('checkinList');
|
|
new Sortable(checkinList, {
|
|
animation: 150,
|
|
onEnd: function(evt) {
|
|
updatePathOrders();
|
|
}
|
|
});
|
|
|
|
// イベントコードのドロップダウン要素を取得
|
|
const eventCodeSelect = document.getElementById('eventCode');
|
|
const zekkenNumberSelect = document.getElementById('zekkenNumber');
|
|
|
|
// ゼッケン番号変更時の処理
|
|
zekkenNumberSelect.addEventListener('change', function(e) {
|
|
const eventCode = eventCodeSelect.value;
|
|
if (!eventCode) {
|
|
alert('イベントコードを選択してください');
|
|
return;
|
|
}
|
|
loadTeamData(e.target.value, eventCode);
|
|
});
|
|
|
|
// イベントコード変更時の処理
|
|
document.getElementById('eventCode').addEventListener('change', function(e) {
|
|
loadZekkenNumbers(e.target.value);
|
|
});
|
|
|
|
// チェックボックス変更時の処理
|
|
checkinList.addEventListener('change', function(e) {
|
|
if (e.target.type === 'checkbox') {
|
|
updateValidation(e.target);
|
|
}
|
|
});
|
|
|
|
// 保存ボタンの処理
|
|
document.getElementById('saveButton').addEventListener('click', saveChanges);
|
|
|
|
// Excel出力ボタンの処理
|
|
document.getElementById('exportButton').addEventListener('click', exportExcel);
|
|
|
|
console.log('Page loaded, attempting to load events...');
|
|
// 初期データ読み込み
|
|
loadEventCodes();
|
|
});
|
|
|
|
async function loadEventCodes() {
|
|
try {
|
|
const response = await fetch(`${API_BASE_URL}/events/`);
|
|
if (!response.ok) {
|
|
throw new Error(`HTTP error! status: ${response.status}`);
|
|
}
|
|
const contentType = response.headers.get("content-type");
|
|
if (!contentType || !contentType.includes("application/json")) {
|
|
throw new TypeError("Response is not JSON");
|
|
}
|
|
|
|
const data = await response.json();
|
|
const select = document.getElementById('eventCode');
|
|
// 既存のオプションをクリア
|
|
select.innerHTML = '<option value="">イベントを選択してください</option>';
|
|
|
|
data.forEach(event => {
|
|
const option = document.createElement('option');
|
|
option.value = event.code;
|
|
option.textContent = event.name;
|
|
select.appendChild(option);
|
|
});
|
|
|
|
} catch (error) {
|
|
console.error('Error loading events:', error);
|
|
// ユーザーにエラーを表示
|
|
const select = document.getElementById('eventCode');
|
|
select.innerHTML = '<option value="">エラー: イベントの読み込みに失敗しました</option>';
|
|
|
|
}
|
|
}
|
|
|
|
function loadZekkenNumbers(eventCode) {
|
|
// APIからゼッケン番号を取得して選択肢を設定
|
|
fetch(`${API_BASE_URL}/zekken_numbers/${eventCode}`)
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
const select = document.getElementById('zekkenNumber');
|
|
select.innerHTML = '<option value="">ゼッケン番号を選択してください</option>';
|
|
data.forEach(number => {
|
|
const option = document.createElement('option');
|
|
option.value = number;
|
|
option.textContent = number;
|
|
select.appendChild(option);
|
|
});
|
|
});
|
|
}
|
|
|
|
|
|
async function loadTeamData(zekkenNumber,event_code) {
|
|
try {
|
|
const [teamResponse, checkinsResponse] = await Promise.all([
|
|
fetch(`${API_BASE_URL}/team_info/${zekkenNumber}/`),
|
|
fetch(`${API_BASE_URL}/checkins/${zekkenNumber}/${event_code}/`),
|
|
]);
|
|
|
|
// 各レスポンスのステータスを個別にチェック
|
|
if (!teamResponse.ok)
|
|
throw new Error(`Team info fetch failed with status ${teamResponse.status}`);
|
|
if (!checkinsResponse.ok)
|
|
throw new Error(`Checkins fetch failed with status ${checkinsResponse.status}`);
|
|
|
|
|
|
const teamData = await teamResponse.json();
|
|
const checkinsData = await checkinsResponse.json();
|
|
|
|
// イベントコードに対応するイベントを検索
|
|
//const event = eventData.find(e => e.code === document.getElementById('eventCode').value);
|
|
|
|
document.getElementById('teamName').textContent = teamData.team_name || '-';
|
|
document.getElementById('members').textContent = teamData.members || '-';
|
|
document.getElementById('startTime').textContent =
|
|
teamData.start_datetime ? new Date(teamData.start_datetime).toLocaleString() : '-';
|
|
document.getElementById('goalTime').textContent =
|
|
teamData.end_datetime ? new Date(teamData.end_datetime).toLocaleString() : '-';
|
|
//'(未ゴール)';
|
|
|
|
// チェックインリストの更新
|
|
const tbody = document.getElementById('checkinList');
|
|
tbody.innerHTML = ''; // 既存のデータをクリア
|
|
|
|
let totalPoints = 0;
|
|
let buyPoints = 0;
|
|
|
|
checkinsData.forEach((checkin, index) => {
|
|
const tr = document.createElement('tr');
|
|
tr.dataset.id = checkin.id;
|
|
tr.dataset.cpNumber = checkin.cp_number;
|
|
|
|
const bgColor = checkin.buy_point > 0 ? 'bg-blue-100' : 'bg-red-100';
|
|
|
|
tr.innerHTML = `
|
|
<td class="px-6 py-4">${checkin.path_order}</td>
|
|
<td class="px-6 py-4">
|
|
${checkin.photos ?
|
|
`<img src="/media/compressed/${checkin.photos}" class="h-20 w-20 object-cover rounded" onclick="showLargeImage(this.src)">` : ''}
|
|
<div class="text-sm">${checkin.photos}</div>
|
|
</td>
|
|
<td class="px-6 py-4">
|
|
${checkin.image_address ?
|
|
`<img src="${checkin.image_address}" class="h-20 w-20 object-cover rounded">` : ''}
|
|
${checkin.receipt_address && checkin.buy_flag ?
|
|
`<img src="${checkin.receipt_address}" class="h-20 w-20 object-cover rounded ml-2">` : ''}
|
|
<div class="text-sm">${checkin.image_address}</div>
|
|
<div class="text-sm">${checkin.receipt_address}</div>
|
|
</td>
|
|
<td class="px-6 py-4 ${bgColor}">
|
|
<div class="font-bold">${checkin.sub_loc_id}</div>
|
|
<div class="text-sm">${checkin.location_name}</div>
|
|
</td>
|
|
<td class="px-6 py-4">${checkin.create_at || '不明'}</td>
|
|
<td class="px-6 py-4">
|
|
<input type="checkbox"
|
|
${checkin.validate_location ? 'checked' : ''}
|
|
class="h-4 w-4 text-blue-600 rounded validate-checkbox"
|
|
onchange="updatePoints(this)">
|
|
</td>
|
|
<td class="px-6 py-4">
|
|
${checkin.buy_point > 0 ? `
|
|
<input type="checkbox"
|
|
${checkin.buy_flag ? 'checked' : ''}
|
|
class="h-4 w-4 text-green-600 rounded buy-checkbox"
|
|
onchange="updateBuyPoints(this)">
|
|
` : ''}
|
|
</td>
|
|
<td class="px-6 py-4 point-value">${checkin.points}</td>
|
|
`;
|
|
tbody.appendChild(tr);
|
|
|
|
if (checkin.points) {
|
|
if (checkin.buy_flag) {
|
|
buyPoints += checkin.points;
|
|
} else {
|
|
totalPoints += checkin.points;
|
|
}
|
|
}
|
|
});
|
|
|
|
// 合計ポイントの更新
|
|
document.getElementById('totalPoints').textContent = totalPoints;
|
|
document.getElementById('buyPoints').textContent = buyPoints;
|
|
document.getElementById('latePoints').textContent = teamData.late_points || 0;
|
|
document.getElementById('finalPoints').textContent =
|
|
totalPoints + buyPoints - (teamData.late_points || 0);
|
|
|
|
|
|
} catch (error) {
|
|
console.error('Error loading team info:', error);
|
|
|
|
// エラーメッセージをユーザーに表示
|
|
alert(`データの読み込みに失敗しました: ${error.message}`);
|
|
|
|
// UIをクリア
|
|
document.getElementById('teamName').textContent = '-';
|
|
document.getElementById('members').textContent = '-';
|
|
document.getElementById('startTime').textContent = '-';
|
|
document.getElementById('goalTime').textContent = '-';
|
|
document.getElementById('checkinList').innerHTML = '';
|
|
document.getElementById('totalPoints').textContent = '0';
|
|
document.getElementById('buyPoints').textContent = '0';
|
|
document.getElementById('latePoints').textContent = '0';
|
|
document.getElementById('finalPoints').textContent = '0';
|
|
|
|
}
|
|
}
|
|
|
|
function loadTeamData_old(zekkenNumber) {
|
|
// チーム情報とチェックインデータを取得
|
|
Promise.all([
|
|
fetch(`${API_BASE_URL}/team_info/${zekkenNumber}`),
|
|
fetch(`${API_BASE_URL}/checkins/${zekkenNumber}`)
|
|
]).then(responses => Promise.all(responses.map(r => r.json())))
|
|
.then(([teamInfo, checkins]) => {
|
|
updateTeamInfo(teamInfo);
|
|
updateCheckinList(checkins);
|
|
calculatePoints();
|
|
});
|
|
}
|
|
|
|
function updateTeamInfo(teamInfo) {
|
|
document.getElementById('teamName').textContent = teamInfo.team_name;
|
|
document.getElementById('members').textContent = teamInfo.members;
|
|
document.getElementById('startTime').textContent = teamInfo.start_time;
|
|
document.getElementById('goalTime').textContent = teamInfo.goal_time;
|
|
document.getElementById('latePoints').textContent = teamInfo.late_points;
|
|
}
|
|
|
|
function updateCheckinList(checkins) {
|
|
const tbody = document.getElementById('checkinList');
|
|
tbody.innerHTML = '';
|
|
|
|
checkins.forEach((checkin, index) => {
|
|
const tr = document.createElement('tr');
|
|
tr.dataset.id = checkin.id;
|
|
tr.dataset.cpNumber = checkin.cp_number;
|
|
|
|
const bgColor = checkin.buy_point > 0 ? 'bg-blue-100' : 'bg-red-100';
|
|
|
|
tr.innerHTML = `
|
|
<td class="px-6 py-4">${checkin.path_order}</td>
|
|
<td class="px-6 py-4 ${bgColor}">
|
|
<div class="font-bold">${checkin.sub_loc_id}</div>
|
|
<div class="text-sm">${checkin.location_name}</div>
|
|
</td>
|
|
<td class="px-6 py-4">
|
|
${checkin.image_address ?
|
|
`<img src="${checkin.image_address}" class="h-20 w-20 object-cover rounded">` : ''}
|
|
${checkin.receipt_address && checkin.buy_flag ?
|
|
`<img src="${checkin.receipt_address}" class="h-20 w-20 object-cover rounded ml-2">` : ''}
|
|
</td>
|
|
<td class="px-6 py-4">${checkin.create_at || '不明'}</td>
|
|
<td class="px-6 py-4">
|
|
<input type="checkbox"
|
|
${checkin.validate_location ? 'checked' : ''}
|
|
class="h-4 w-4 text-blue-600 rounded validate-checkbox"
|
|
onchange="updatePoints(this)">
|
|
</td>
|
|
<td class="px-6 py-4">
|
|
${checkin.buy_point > 0 ? `
|
|
<input type="checkbox"
|
|
${checkin.buy_flag ? 'checked' : ''}
|
|
class="h-4 w-4 text-green-600 rounded buy-checkbox"
|
|
onchange="updateBuyPoints(this)">
|
|
` : ''}
|
|
</td>
|
|
<td class="px-6 py-4 point-value">${checkin.points}</td>
|
|
`;
|
|
tbody.appendChild(tr);
|
|
});
|
|
calculateTotalPoints();
|
|
}
|
|
|
|
// ポイント更新関数
|
|
function updatePoints(checkbox) {
|
|
const tr = checkbox.closest('tr');
|
|
const pointCell = tr.querySelector('.point-value');
|
|
const cpNumber = tr.dataset.cpNumber;
|
|
|
|
fetch(`${API_BASE_URL}/location/${cpNumber}/`)
|
|
.then(response => response.json())
|
|
.then(location => {
|
|
const points = checkbox.checked ? location.checkin_point : 0;
|
|
pointCell.textContent = points;
|
|
calculateTotalPoints();
|
|
});
|
|
}
|
|
|
|
// 買い物ポイント更新関数
|
|
function updateBuyPoints(checkbox) {
|
|
const tr = checkbox.closest('tr');
|
|
const pointCell = tr.querySelector('.point-value');
|
|
const cpNumber = tr.dataset.cpNumber;
|
|
|
|
fetch(`${API_BASE_URL}/location/${cpNumber}/`)
|
|
.then(response => response.json())
|
|
.then(location => {
|
|
const points = checkbox.checked ? location.buy_point : 0;
|
|
pointCell.textContent = points;
|
|
calculateTotalPoints();
|
|
});
|
|
}
|
|
|
|
// 画像拡大表示用のモーダル関数
|
|
function showLargeImage(src) {
|
|
const modal = document.createElement('div');
|
|
modal.classList.add('fixed', 'inset-0', 'bg-black', 'bg-opacity-75', 'flex', 'items-center', 'justify-center', 'z-50');
|
|
|
|
const img = document.createElement('img');
|
|
img.src = src;
|
|
img.classList.add('max-w-3xl', 'max-h-[90vh]', 'object-contain');
|
|
|
|
modal.appendChild(img);
|
|
modal.onclick = () => modal.remove();
|
|
document.body.appendChild(modal);
|
|
}
|
|
|
|
// 新規CP追加用のモーダル
|
|
function showAddCPModal() {
|
|
const modal = document.createElement('div');
|
|
modal.className = 'fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center';
|
|
modal.innerHTML = `
|
|
<div class="bg-white p-6 rounded-lg w-96">
|
|
<h3 class="text-lg font-bold mb-4">新規CPを追加</h3>
|
|
<div class="space-y-4" id="cpInputs">
|
|
<div class="flex gap-2">
|
|
<input type="number" class="cp-input border rounded px-2 py-1 w-full" placeholder="CP番号">
|
|
</div>
|
|
</div>
|
|
<div class="flex justify-end mt-4 space-x-2">
|
|
<button onclick="addCPInput()" class="px-4 py-2 bg-blue-500 text-white rounded">
|
|
追加
|
|
</button>
|
|
<button onclick="saveCPs()" class="px-4 py-2 bg-green-500 text-white rounded">
|
|
保存
|
|
</button>
|
|
<button onclick="closeModal()" class="px-4 py-2 bg-gray-500 text-white rounded">
|
|
キャンセル
|
|
</button>
|
|
</div>
|
|
</div>
|
|
`;
|
|
document.body.appendChild(modal);
|
|
}
|
|
|
|
function saveCPs() {
|
|
const inputs = document.querySelectorAll('.cp-input');
|
|
const eventCode = eventCodeSelect.value;
|
|
const newCheckins = Array.from(inputs)
|
|
.map(input => ({
|
|
cp_number: input.value,
|
|
create_at: null,
|
|
validate_location: false,
|
|
buy_flag: false,
|
|
points: 0
|
|
}));
|
|
|
|
// APIを呼び出して保存
|
|
fetch(`${API_BASE_URL}/checkins/`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({
|
|
zekken_number: currentZekkenNumber,
|
|
checkins: newCheckins
|
|
})
|
|
})
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
loadTeamData(currentZekkenNumber,eventCode);
|
|
closeModal();
|
|
});
|
|
}
|
|
|
|
function closeModal() {
|
|
document.querySelector('.fixed').remove();
|
|
}
|
|
|
|
|
|
function updatePathOrders() {
|
|
const rows = Array.from(document.getElementById('checkinList').children);
|
|
rows.forEach((row, index) => {
|
|
row.children[0].textContent = index + 1;
|
|
});
|
|
}
|
|
|
|
function calculatePoints() {
|
|
const rows = Array.from(document.getElementById('checkinList').children);
|
|
let totalPoints = 0;
|
|
let buyPoints = 0;
|
|
|
|
rows.forEach(row => {
|
|
const points = parseInt(row.children[4].textContent);
|
|
if (!isNaN(points)) {
|
|
totalPoints += points;
|
|
if (row.dataset.buyFlag === 'true') {
|
|
buyPoints += points;
|
|
}
|
|
}
|
|
});
|
|
|
|
const latePoints = parseInt(document.getElementById('latePoints').textContent) || 0;
|
|
const finalPoints = totalPoints + buyPoints - latePoints;
|
|
|
|
document.getElementById('totalPoints').textContent = totalPoints;
|
|
document.getElementById('buyPoints').textContent = buyPoints;
|
|
document.getElementById('finalPoints').textContent = finalPoints;
|
|
}
|
|
|
|
function formatDateTime(dateString) {
|
|
return new Date(dateString).toLocaleString('ja-JP');
|
|
}
|
|
|
|
function saveChanges() {
|
|
const rows = Array.from(document.getElementById('checkinList').children);
|
|
const updates = rows.map((row, index) => ({
|
|
id: row.dataset.id,
|
|
path_order: index + 1,
|
|
validate_location: row.querySelector('.validate-checkbox').checked
|
|
}));
|
|
|
|
fetch('${API_BASE_URL}/update_checkins', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify(updates)
|
|
}).then(response => {
|
|
if (response.ok) {
|
|
alert('保存しました');
|
|
} else {
|
|
alert('保存に失敗しました');
|
|
}
|
|
});
|
|
}
|
|
|
|
function exportExcel() {
|
|
const zekkenNumber = document.getElementById('zekkenNumber').value;
|
|
window.location.href = `/api/export-excel/${zekkenNumber}`;
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|