server/src/main/webapp/WEB-INF/templates/admin/userDeleteConfirm.html
author ymh <ymh.work@gmail.com>
Mon, 21 Oct 2013 17:55:12 +0200
branchuser_management
changeset 224 0167b777ad15
parent 222 6ac00231ee34
child 235 f8746a482459
permissions -rw-r--r--
remove deprecated warnings + fix date picker default langauge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
222
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
<!DOCTYPE html>
224
0167b777ad15 remove deprecated warnings + fix date picker default langauge
ymh <ymh.work@gmail.com>
parents: 222
diff changeset
     2
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" th:lang="${#ctx.getLocale().toLanguageTag()}" >
222
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
  <head>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
    <title>Renkan Admin - delete user</title>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
    <meta charset="utf-8"/>
6ac00231ee34 Manage users. (not passwords)
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"/>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
    <link rel="shortcut icon" href="../../../static/img/favicon.ico" th:href="@{/static/img/favicon.ico}" />
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
    <link href="../../../static/css/style.css" rel="stylesheet" th:href="@{/static/css/style.css}"/>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12
    <link href="../../../static/css/index.css" rel="stylesheet" th:href="@{/static/css/index.css}"/>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
        
6ac00231ee34 Manage users. (not passwords)
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>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    15
    <script th:remove="all" type="text/javascript" src="../../../static/js/thymol.js"></script>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    16
  </head>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    17
  <body>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    18
    <div id="container">
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    19
      <div id="wrapper">
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    20
        <header id="header">
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    21
            <h1><a href="renkanIndex.html" th:href="@{/admin}" th:text="#{renkanAdmin.renkan_admin}" id="home-link">Renkan administration</a></h1>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    22
            <div id="headerNav" th:include="fragment/pageFragment :: headerNavFragment"></div>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    23
        </header>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    24
        <h2><a href="usersList.html" th:href="@{/admin/users}" th:text="#{renkanAdmin.object_list(#{renkanAdmin.user_objects_name})}">Users List</a>&nbsp;/&nbsp;<span th:text="#{renkanAdmin.user_delete}">Delete user</span></h2>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    25
        <div id="object-delete-container">
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    26
            <div id="object-delete-question" th:text="#{renkanAdmin.user_confirm_delete(${userObj.title})}">Do you want to Delete user with name</div>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    27
            <div id="object-delete-confirm-buttons"><form action="usersList.html" th:action="@{'/admin/users/delete/'+${userObj.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="usersList.html" method="get" th:action="@{/admin/users}" id="no-form" onsubmit="return false"><input type="submit" name="ok" value="no" th:value="#{question.no}" id="no-button" onclick="window.location.href='usersList.html'" th:onclick="'window.location.href=\''+@{/admin/users}+'\''"/></form></div>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    28
        </div>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    29
      </div>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    30
      <footer id="footer" th:substituteby="fragment/pageFragment::footerFragment">
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    31
        <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>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    32
      </footer>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    33
    </div>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    34
  </body>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents:
diff changeset
    35
</html>