24 lines
555 B
HTML
24 lines
555 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en"
|
||
|
xmlns:th="http://www.thymeleaf.org"
|
||
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
||
|
layout:decorator="default">
|
||
|
<head>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container" layout:fragment="content">
|
||
|
<div id="users-tab">
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
<th:block layout:fragment="scripts">
|
||
|
<script th:inline="javascript">
|
||
|
/*<![CDATA[*/
|
||
|
$(document).ready(function () {
|
||
|
new OdinTableWithMeta("users-tab", urlUsers, true);
|
||
|
});
|
||
|
/*]]>*/
|
||
|
</script>
|
||
|
</th:block>
|
||
|
</body>
|
||
|
</html>
|