T139 History table draft created

This commit is contained in:
2021-03-17 15:58:40 +01:00
parent a9ce408b80
commit 4ad48419df
6 changed files with 82 additions and 17 deletions

View File

@@ -8,6 +8,7 @@
<link rel="stylesheet" href="http://gordon.zipper.release11.com:8085/common.css" type="text/css">
<link rel="stylesheet" href="/Dependency/fontello-plus/css/fontello.css" type="text/css"/>
<link rel="stylesheet" href="/css/modal.css" type="text/css">
<link rel="stylesheet" href="/css/table.css" type="text/css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Acme&family=Josefin+Slab:wght@500&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
@@ -103,14 +104,31 @@
<button>Search</button>
</div>
<div>
<table id="historyTable">
<table id="historyTable" class="simpleTable">
<thead>
<tr>
<td>Timestamp</td>
<td>Status</td>
<tr class="head">
<th>Timestamp</th>
<th>Status</th>
</tr>
</thead>
<tbody></tbody>
<tbody>
<tr>
<td>2020-02-02 10:56:23</td>
<td>Request received</td>
</tr>
<tr>
<td>2020-02-02 10:56:23</td>
<td>Request received</td>
</tr>
<tr>
<td>2020-02-02 10:56:23</td>
<td>Request received</td>
</tr>
<tr>
<td>2020-02-02 10:56:23</td>
<td>Request received</td>
</tr>
</tbody>
</table>
</div>
</div>