| author | ymh <ymh.work@gmail.com> |
| Wed, 03 Apr 2013 17:47:23 +0200 | |
| changeset 129 | 01c862ada33c |
| child 150 | 5b62100b8562 |
| permissions | -rw-r--r-- |
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
1 |
<!DOCTYPE html> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
2 |
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" > |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
3 |
<head> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
4 |
<title>Renkan Admin - edit space</title> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
5 |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
6 |
<meta charset="utf-8"/> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
7 |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
8 |
|
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
9 |
<link rel="shortcut icon" href="../../../static/img/favicon.ico" th:href="@{/static/img/favicon.ico}" /> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
10 |
|
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
11 |
<link href="../../../static/css/style.css" rel="stylesheet" th:href="@{/static/css/style.css}"/> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
12 |
<link href="../../../static/css/index.css" rel="stylesheet" th:href="@{/static/css/index.css}"/> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
13 |
|
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
14 |
<script th:remove="all" type="text/javascript" src="../../../static/lib/jquery.min.js" th:src="@{/static/lib/jquery.min.js}" ></script> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
15 |
<script th:remove="all" type="text/javascript" src="../../../static/js/thymol.js"></script> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
16 |
</head> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
17 |
<body> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
18 |
<div id="container"> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
19 |
<div id="wrapper"> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
20 |
<h1><a href="renkanIndex.html" th:href="@{/admin}" th:text="#{renkanAdmin.renkan_admin}" id="home-link">Renkan administration</a></h1> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
21 |
<h2><a href="spacesList.html" th:href="@{/admin/spaces}" th:text="#{renkanAdmin.object_list(#{renkanAdmin.space_objects_name})}">Spaces List</a> / <span th:text="#{renkanAdmin.space_delete}">Delete space</span></h2> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
22 |
<div id="space-delete-container"> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
23 |
<div id="space-delete-question" th:text="#{renkanAdmin.space_confirm_delete(${spaceObj.title})}">Do you want to delete space with title</div> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
24 |
<div id="space-delete-confirm-buttons"><form action="spacesList.html" th:action="@{'/admin/spaces/delete/'+${spaceObj.id}(key=${key},salt=${salt})}" method="post" id="yes-form"><input type="submit" name="ok" value="yes" th:value="#{question.yes}" id="yes-button"/></form><form action="spacesList.html" method="get" th:action="@{/admin/spaces}" id="no-form" onsubmit="return false"><input type="submit" name="ok" value="no" th:value="#{question.no}" id="no-button" onclick="window.location.href='spacesList.html'" th:onclick="'window.location.href=\''+@{/admin/spaces}+'\''"/></form></div> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
25 |
</div> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
26 |
</div> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
27 |
<footer id="footer" th:substituteby="fragment/pageFragment::footerFragment"> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
28 |
<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> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
29 |
</footer> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
30 |
</div> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
31 |
</body> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
32 |
</html> |