anitv-schedule/manage.html
2023-02-23 23:35:29 +09:00

70 lines
2.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>AniTV Schedule - Manage</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- CSS -->
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/bootstrap.css" />
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/bootstrap-app.css" />
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/datatables-table.css" />
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/datatables-table-jui.css" />
<!-- JS -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/jquery.jeditable.js"></script>
<script type="text/javascript" src="assets/js/jquery.datatables.min.js"></script>
<script type="text/javascript" src="assets/js/jquery.tablesorter.min.js"></script>
<script type="text/javascript" src="assets/js/anitv-manage.js"></script>
<script type="text/javascript" src="assets/js/clock.js"></script>
</head>
<body>
<div class="topbar">
<div class="fill">
<div class="container">
<a class="brand" href="#">AniTV Schedule</a>
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="api.html" data-view="api">API</a></li>
<li class="active"><a href="manage.html" data-view="manage">Manage</a></li>
<li><a href="history.html" data-view="history">History</a></li>
</ul>
<p class="pull-right" id="clock"></p>
</div>
</div>
</div>
<div class="container">
<div class="content" id="view">
<div class="page-header">
<h1>Manage <small>modify and update information</small></h1>
</div>
<div class="row">
<table id="manage" style="clear: both;">
<thead>
<tr>
<th style="width: 315px">Original</th>
<th style="width: 315px">Romaji</th>
<th style="width: 315px">English</th>
<th style="width: 50px">AniDB</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="4" class="dataTables_empty">Loading data...</td>
</tr>
</tbody>
</table>
</div>
</div>
<footer>
<p>AniTV Schedule 0.2.0 &COPY; TEAM SEPTiCORE 2011</p>
</footer>
</div>
</body>
</html>