| author | ymh <ymh.work@gmail.com> |
| Tue, 14 May 2013 12:48:33 +0200 | |
| branch | user_management |
| changeset 218 | aaf55e08827a |
| parent 150 | 5b62100b8562 |
| child 224 | 0167b777ad15 |
| permissions | -rw-r--r-- |
| 127 | 1 |
<!DOCTYPE html> |
2 |
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" > |
|
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 |
||
14 |
<script th:remove="all" type="text/javascript" src="../../../static/lib/jquery.min.js"></script> |
|
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> |
|
| 127 | 38 |
</tbody> |
39 |
</table> |
|
40 |
</div> |
|
41 |
<footer id="footer" th:substituteby="fragment/pageFragment::footerFragment"> |
|
| 218 | 42 |
<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 | 43 |
</footer> |
44 |
</div> |
|
45 |
</body> |
|
46 |
</html> |