| author | ymh <ymh.work@gmail.com> |
| Tue, 23 Apr 2013 16:54:18 +0200 | |
| branch | user_management |
| changeset 215 | a282eebbc5e0 |
| parent 150 | 5b62100b8562 |
| child 222 | 6ac00231ee34 |
| 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 - 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"> |
|
|
150
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
141
diff
changeset
|
20 |
<header id="header"> |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
141
diff
changeset
|
21 |
<h1><a href="renkanIndex.html" th:href="@{/admin}" th:text="#{renkanAdmin.renkan_admin}" id="home-link">Renkan administration</a></h1> |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
141
diff
changeset
|
22 |
<div id="headerNav" th:include="fragment/pageFragment :: headerNavFragment"></div> |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
141
diff
changeset
|
23 |
</header> |
| 127 | 24 |
<h2 th:text="#{renkanAdmin.object_list(#{renkanAdmin.space_objects_name})}">List of objects</h2> |
25 |
<div th:include="fragment/paginationFragment :: paginationFragment" class="pagination-container"> |
|
26 |
<div> |
|
27 |
<a href="#?p.page=1"><<</a> |
|
28 |
<a href="#?p.page=3"><</a> |
|
29 |
<span>...</span> |
|
30 |
<a href="#?p.page=2">2</a> |
|
31 |
<a href="#?p.page=3">3</a> |
|
32 |
<span>4</span> |
|
33 |
<a href="#?p.page=5">5</a> |
|
34 |
<a href="#?p.page=6">6</a> |
|
35 |
<span>...</span> |
|
36 |
<a href="#?p.page=5">></a> |
|
37 |
<a href="#?p.page=7">>></a> |
|
38 |
</div> |
|
39 |
</div> |
|
40 |
<div id="objects-content"> |
|
41 |
<ul class="object-tools"> |
|
| 215 | 42 |
<li><a href="spaceAdd.html" th:href="@{/admin/users/edit/}" th:text="#{renkanAdmin.user_add}">Add user</a></li> |
| 127 | 43 |
</ul> |
44 |
<table> |
|
45 |
<thead> |
|
46 |
<tr> |
|
| 215 | 47 |
<th th:text="#{renkanAdmin.object_name}" class="object-table-title">Name</th> |
48 |
<th th:text="#{renkanAdmin.object_created}" class="object-table-created">Created</th> |
|
49 |
<th th:text="#{renkanAdmin.space_proj_count}" class="object-proj-count">Project count</th> |
|
50 |
<th th:text="#{renkanIndex.space_url}" class="object-url">url</th> |
|
51 |
<th th:text="#{renkanAdmin.object_edit}" class="object-table-actions">Edit</th> |
|
52 |
<th th:text="#{renkanAdmin.object_delete}" class="object-table-actions">Delete</th> |
|
| 127 | 53 |
</tr> |
54 |
</thead> |
|
55 |
<tbody> |
|
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
128
diff
changeset
|
56 |
<tr th:each="object: ${page.content}" th:with="spaceProjCount=${#maps.containsKey(projectsCount, object.id)}? ${projectsCount[object.id]} : 0"> |
| 215 | 57 |
<td th:text="${object.title}" class="object-table-title" >title</td> |
58 |
<td th:text="${object.created}?${#dates.format(object.created, #messages.msg('date.format'))}:'n/a'" class="object-table-created">created</td> |
|
59 |
<td th:text="${spaceProjCount}" class="object-proj-count">nb. proj</td> |
|
60 |
<td class="object-url"><a href="../renkanIndex.html" th:href="@{'/s/'+${object.id}}" th:text="#{renkanIndex.space_url}" >url</a></td> |
|
61 |
<td><a href="spaceEdit.html" th:href="@{'/admin/spaces/edit/'+${object.id}}" th:text="#{renkanAdmin.object_edit_link}" class="object-table-actions">Edit</a></td> |
|
62 |
<td><a href="#" th:if="${spaceProjCount==0}" th:href="@{'/admin/spaces/delete/'+${object.id}}" th:text="#{renkanAdmin.object_delete_link}" class="object-table-actions">Delete</a><span th:if="${spaceProjCount>0}" class="object-table-actions object-table-actions-disabled" th:text="#{renkanAdmin.object_delete_link}">Delete</span></td> |
|
| 127 | 63 |
</tr> |
64 |
</tbody> |
|
65 |
</table> |
|
66 |
</div> |
|
67 |
||
68 |
</div> |
|
69 |
<footer id="footer" th:substituteby="fragment/pageFragment::footerFragment"> |
|
70 |
<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> |
|
71 |
</footer> |
|
72 |
</div> |
|
73 |
</body> |
|
74 |
</html> |