| author | ymh <ymh.work@gmail.com> |
| Sun, 14 Jul 2024 22:00:08 +0200 | |
| changeset 666 | 9d6550026232 |
| parent 350 | 0b6f2883a67b |
| permissions | -rw-r--r-- |
| 127 | 1 |
<!DOCTYPE html> |
|
224
0167b777ad15
remove deprecated warnings + fix date picker default langauge
ymh <ymh.work@gmail.com>
parents:
218
diff
changeset
|
2 |
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" th:lang="${#ctx.getLocale().toLanguageTag()}"> |
| 127 | 3 |
<head> |
4 |
<title>Renkan Admin</title> |
|
5 |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
|
6 |
<meta charset="utf-8"/> |
|
7 |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/> |
|
8 |
||
9 |
<link rel="shortcut icon" href="../../../static/img/favicon.ico" th:href="@{/static/img/favicon.ico}" /> |
|
10 |
||
11 |
<link href="../../../static/css/style.css" rel="stylesheet" th:href="@{/static/css/style.css}"/> |
|
12 |
<link href="../../../static/css/index.css" rel="stylesheet" th:href="@{/static/css/index.css}"/> |
|
13 |
||
| 350 | 14 |
<script th:remove="all" type="text/javascript" src="../../../static/lib/jquery/jquery.js"></script> |
| 127 | 15 |
<script th:remove="all" type="text/javascript" src="../../../static/js/thymol.js"></script> |
16 |
</head> |
|
17 |
<body> |
|
18 |
<div id="container"> |
|
|
150
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
19 |
<div id="wrapper" th:with="headerTitle=#{renkanAdmin.renkan_admin}"> |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
20 |
<header id="header" th:include="fragment/pageFragment :: headerFragment"> |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
21 |
<h1 th:text="#{renkanAdmin.renkan_admin}">Renkan administration</h1> |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
22 |
</header> |
| 127 | 23 |
<h2 th:text="#{renkanAdmin.site_admin}">Site administration</h2> |
24 |
<table id="object_list"> |
|
25 |
<thead> |
|
26 |
<tr> |
|
27 |
<th th:text="#{renkanAdmin.object}">Object</th> |
|
28 |
<th> </th> |
|
29 |
</tr> |
|
30 |
</thead> |
|
31 |
<tbody> |
|
32 |
<tr> |
|
33 |
<td colspan="2"><a href="spacesList.html" th:href="@{/admin/spaces}" th:text="#{renkanAdmin.space_objects_name}">Spaces</a></td> |
|
34 |
</tr> |
|
| 218 | 35 |
<tr> |
36 |
<td colspan="2"><a href="usersList.html" th:href="@{/admin/users}" th:text="#{renkanAdmin.user_objects_name}">Users</a></td> |
|
37 |
</tr> |
|
| 235 | 38 |
<tr> |
39 |
<td colspan="2"><a href="groupsList.html" th:href="@{/admin/groups}" th:text="#{renkanAdmin.group_objects_name}">Groups</a></td> |
|
40 |
</tr> |
|
| 127 | 41 |
</tbody> |
42 |
</table> |
|
43 |
</div> |
|
44 |
<footer id="footer" th:substituteby="fragment/pageFragment::footerFragment"> |
|
| 218 | 45 |
<div id="version">© <span class="version-date">2013</span> <a href="http://www.iri.centrepompidou.fr" target="_blank">IRI</a> - Version <span class="version-version">0.0</span></div> |
| 127 | 46 |
</footer> |
47 |
</div> |
|
48 |
</body> |
|
49 |
</html> |