server/java/renkan-web/src/main/webapp/WEB-INF/templates/admin/userEdit.html
author ymh <ymh.work@gmail.com>
Mon, 21 Jul 2014 14:48:01 +0200
changeset 316 242510015401
parent 309 server/renkan-web/src/main/webapp/WEB-INF/templates/admin/userEdit.html@0c3e6e66881f
child 350 0b6f2883a67b
permissions -rw-r--r--
move java server project to sub folder
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
215
a282eebbc5e0 - add users to Renkan
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()}" >
215
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
  <head>
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
    <title>Renkan Admin - edit user</title>
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
    <meta charset="utf-8"/>
a282eebbc5e0 - add users to Renkan
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"/>
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
    <link rel="shortcut icon" href="../../../static/img/favicon.ico" th:href="@{/static/img/favicon.ico}" />
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
    <link href="../../../static/css/style.css" rel="stylesheet" th:href="@{/static/css/style.css}"/>
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12
    <link href="../../../static/css/index.css" rel="stylesheet" th:href="@{/static/css/index.css}"/>
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
    <link href='../../../static/css/spectrum.css' rel="stylesheet" th:href="@{/static/css/spectrum.css}"/>
222
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    14
    <link href='../../../static/lib/jquery-ui/css/ui-lightness/jquery-ui.min.css' rel="stylesheet" th:href="@{/static/lib/jquery-ui/css/ui-lightness/jquery-ui.min.css}"/>
215
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    15
    
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    16
    <script type="text/javascript" src="../../../static/lib/jquery.min.js" th:src="@{/static/lib/jquery.min.js}" ></script>
222
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    17
    <script type="text/javascript" src="../../../static/lib/jquery-ui/jquery-ui.min.js" th:src="@{/static/lib/jquery-ui/jquery-ui.min.js}" ></script>
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    18
    <script type="text/javascript" src="../../../static/lib/jquery-ui/i18n/jquery-ui-i18n.min.js" th:src="@{/static/lib/jquery-ui/i18n/jquery-ui-i18n.min.js}" ></script>
215
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    19
    <script type="text/javascript" src='../../../static/lib/spectrum.js' th:src="@{/static/lib/spectrum.js}"></script>
222
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    20
    <script type="text/javascript" src='../../../static/js/admin_form.js' th:src="@{/static/js/admin_form.js}"></script>
215
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    21
    <script th:remove="all" type="text/javascript" src="../../../static/js/thymol.js"></script>
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    22
  </head>
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    23
  <body>
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    24
    <div id="container">
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    25
      <div id="wrapper">
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    26
        <header id="header">
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    27
            <h1><a href="renkanIndex.html" th:href="@{/admin}" th:text="#{renkanAdmin.renkan_admin}" id="home-link">Renkan administration</a></h1>
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    28
            <div id="headerNav" th:include="fragment/pageFragment :: headerNavFragment"></div>
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    29
        </header>
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    30
        <h2><a href="userList.html" th:href="@{/admin/users}" th:text="#{renkanAdmin.object_list(#{renkanAdmin.user_objects_name})}">Users List</a>&nbsp;/&nbsp;<span th:text="#{renkanAdmin.user_edit}">Edit user</span></h2>
222
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    31
        <div th:include="fragment/userForm::userFormFragment" id="inner-container">
215
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    32
        </div>
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    33
      </div>
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    34
      <footer id="footer" th:substituteby="fragment/pageFragment::footerFragment">
235
f8746a482459 Add first version of group
ymh <ymh.work@gmail.com>
parents: 224
diff changeset
    35
        <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>
222
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    36
      </footer>
215
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    37
    </div>
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    38
  </body>
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents:
diff changeset
    39
</html>