-
Notifications
You must be signed in to change notification settings - Fork 0
/
rezultati.html
29 lines (27 loc) · 1.14 KB
/
rezultati.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Rezultati</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<a class="btn btn-success m-3" href="minolovec.html">Nazaj</a>
<div class="" id="">
<table class="table table-striped">
<thead>
<tr>
<th><button class="btn btn-outline-info" onclick="sortById()">ID</button></th>
<th><button class="btn btn-outline-info" onclick="sortByIme()">Ime</button></th>
<th><button class="btn btn-outline-info" onclick="sortByOdstotek()">Odstotek</button></th>
<th><button class="btn btn-outline-info" onclick="sortByVelikost()">Velikost</button></th>
<th><button class="btn btn-outline-info" onclick="sortByCas()">Čas</button></th>
</tr>
</thead>
<tbody id="demo">
</tbody>
</table>
</div>
<script type="text/javascript" src="javascript/rezultati.js"></script>
</body>
</html>