|
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 - Spaces</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"> |
|
|
19 |
<div id="wrapper"> |
|
|
20 |
<h1><a href="renkanIndex.html" th:href="@{/admin}" th:text="#{renkanAdmin.renkan_admin}" id="home-link">Renkan administration</a></h1> |
|
|
21 |
<h2 th:text="#{renkanAdmin.object_list(#{renkanAdmin.space_objects_name})}">List of objects</h2> |
|
|
22 |
<div th:include="fragment/paginationFragment :: paginationFragment" class="pagination-container"> |
|
|
23 |
<div> |
|
|
24 |
<a href="#?p.page=1"><<</a> |
|
|
25 |
<a href="#?p.page=3"><</a> |
|
|
26 |
<span>...</span> |
|
|
27 |
<a href="#?p.page=2">2</a> |
|
|
28 |
<a href="#?p.page=3">3</a> |
|
|
29 |
<span>4</span> |
|
|
30 |
<a href="#?p.page=5">5</a> |
|
|
31 |
<a href="#?p.page=6">6</a> |
|
|
32 |
<span>...</span> |
|
|
33 |
<a href="#?p.page=5">></a> |
|
|
34 |
<a href="#?p.page=7">>></a> |
|
|
35 |
</div> |
|
|
36 |
</div> |
|
|
37 |
<div id="objects-content"> |
|
|
38 |
<ul class="object-tools"> |
|
|
39 |
<li><a href="spacesAdd.html" th:href="@{/admin/spaces/add}" th:text="#{renkanAdmin.space_add}">Add space</a></li> |
|
|
40 |
</ul> |
|
|
41 |
<table> |
|
|
42 |
<thead> |
|
|
43 |
<tr> |
|
|
44 |
<th th:text="#{renkanAdmin.object_name}" class="spaces-table-title">Name</th> |
|
|
45 |
<th th:text="#{renkanAdmin.object_name}" class="spaces-table-created">Created</th> |
|
|
46 |
<th th:text="#{renkanAdmin.object_edit}" class="spaces-table-actions">Edit</th> |
|
|
47 |
<th th:text="#{renkanAdmin.object_delete}" class="spaces-table-actions">Delete</th> |
|
|
48 |
</tr> |
|
|
49 |
</thead> |
|
|
50 |
<tbody> |
|
|
51 |
<tr th:each="object: ${page.content}"> |
|
|
52 |
<td th:text="${object.title}" class="spaces-table-title" >title</td> |
|
|
53 |
<td th:text="${#dates.format(object.created, #messages.msg('date.format'))}" class="spaces-table-created">created</td> |
|
|
54 |
<td><a href="spaceEdit.html" th:href="@{'/admin/spaces/'+${object.id}}" th:text="#{renkanAdmin.object_edit_link}" class="spaces-table-actions">Edit</a></td> |
|
|
55 |
<td><a href="#" th:href="@{'/s/'+${object.id}}" th:text="#{renkanAdmin.object_delete_link}" class="spaces-table-actions">Delete</a></td> |
|
|
56 |
</tr> |
|
|
57 |
</tbody> |
|
|
58 |
</table> |
|
|
59 |
</div> |
|
|
60 |
|
|
|
61 |
</div> |
|
|
62 |
<footer id="footer" th:substituteby="fragment/pageFragment::footerFragment"> |
|
|
63 |
<div id="version">© <span class="version-date">2013</span> <a href="http://www.iri.centrepompidou.fr" target="_blanck">IRI</a> - Version <span class="version-version">0.0</span></div> |
|
|
64 |
</footer> |
|
|
65 |
</div> |
|
|
66 |
</body> |
|
|
67 |
</html> |