server/java/renkan-web/src/main/webapp/WEB-INF/templates/admin/groupDeleteConfirm.html
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" th:lang="${#ctx.getLocale().toLanguageTag()}" >
<head>
<title>Renkan Admin - delete group</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
<link rel="shortcut icon" href="../../../static/img/favicon.ico" th:href="@{/static/img/favicon.ico}" />
<link href="../../../static/css/style.css" rel="stylesheet" th:href="@{/static/css/style.css}"/>
<link href="../../../static/css/index.css" rel="stylesheet" th:href="@{/static/css/index.css}"/>
<script th:remove="all" type="text/javascript" src="../../../static/lib/jquery/jquery.js" th:src="@{/static/lib/jquery/jquery.js}" ></script>
<script th:remove="all" type="text/javascript" src="../../../static/js/thymol.js"></script>
</head>
<body>
<div id="container">
<div id="wrapper">
<header id="header">
<h1><a href="renkanIndex.html" th:href="@{/admin}" th:text="#{renkanAdmin.renkan_admin}" id="home-link">Renkan administration</a></h1>
<div id="headerNav" th:include="fragment/pageFragment :: headerNavFragment"></div>
</header>
<h2><a href="groupsList.html" th:href="@{/admin/groups}" th:text="#{renkanAdmin.object_list(#{renkanAdmin.group_objects_name})}">Groups List</a> / <span th:text="#{renkanAdmin.group_delete}">Delete group</span></h2>
<div id="object-delete-container">
<div id="object-delete-question" th:text="#{renkanAdmin.group_confirm_delete(${groupObj.title})}">Do you want to Delete group with name</div>
<div id="object-delete-confirm-buttons"><form action="groupsList.html" th:action="@{'/admin/groups/delete/'+${groupObj.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="groupsList.html" method="get" th:action="@{/admin/groups}" id="no-form" onsubmit="return false"><input type="submit" name="ok" value="no" th:value="#{question.no}" id="no-button" onclick="window.location.href='groupsList.html'" th:onclick="'window.location.href=\''+@{/admin/groups}+'\''"/></form></div>
</div>
</div>
<footer id="footer" th:substituteby="fragment/pageFragment::footerFragment">
<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>
</footer>
</div>
</body>
</html>