Files
njts-accounting-core/frontend/ledger.html
2025-12-14 23:54:48 +09:00

30 lines
608 B
HTML

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<title>元帳</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<h1 id="account-title">元帳</h1>
<table>
<thead>
<tr>
<th>日付</th>
<th>摘要</th>
<th>借方</th>
<th>贷方</th>
<th>残高</th>
</tr>
</thead>
<tbody id="ledger-body"></tbody>
</table>
<a href="index.html">← 試算表へ戻る</a>
<script src="js/api.js"></script>
<script src="js/ledger.js"></script>
</body>
</html>