37 lines
686 B
HTML
37 lines
686 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>List tasks by Neptun</title>
|
|
<script src="/js/config.js"></script>
|
|
<script src="/js/utils.js"></script>
|
|
<script defer src="/js/admin_list.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<input type="text" id="neptun">
|
|
<br>
|
|
<input type="button" value="List" onclick="list_tasks()">
|
|
|
|
<div>Sum: <span id="sum"></span></div>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Description</th>
|
|
<th>Issuer</th>
|
|
<th>Points</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="list">
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
</body>
|
|
|
|
</html> |