server/renkan-web/src/main/webapp/WEB-INF/templates/admin/spaceDeleteConfirm.html
changeset 316 242510015401
parent 315 8c85ab4cf3aa
child 317 2b30c5426f1e
equal deleted inserted replaced
315:8c85ab4cf3aa 316:242510015401
     1 <!DOCTYPE html>
       
     2 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" th:lang="${#ctx.getLocale().toLanguageTag()}">
       
     3   <head>
       
     4     <title>Renkan Admin - delete space</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" th: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         <header id="header">
       
    21             <h1><a href="renkanIndex.html" th:href="@{/admin}" th:text="#{renkanAdmin.renkan_admin}" id="home-link">Renkan administration</a></h1>
       
    22             <div id="headerNav" th:include="fragment/pageFragment :: headerNavFragment"></div>
       
    23         </header>
       
    24         <h2><a href="spacesList.html" th:href="@{/admin/spaces}" th:text="#{renkanAdmin.object_list(#{renkanAdmin.space_objects_name})}">Spaces List</a>&nbsp;/&nbsp;<span th:text="#{renkanAdmin.space_delete}">Delete space</span></h2>
       
    25         <div id="object-delete-container">
       
    26             <div id="object-delete-question" th:text="#{renkanAdmin.space_confirm_delete(${spaceObj.title})}">Do you want to delete space with title</div>
       
    27             <div id="object-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>
       
    28         </div>
       
    29       </div>
       
    30       <footer id="footer" th:substituteby="fragment/pageFragment::footerFragment">
       
    31         <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>
       
    32       </footer>      
       
    33     </div>
       
    34   </body>
       
    35 </html>