|
235
|
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 - edit user</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 |
<link href='../../../static/css/spectrum.css' rel="stylesheet" th:href="@{/static/css/spectrum.css}"/> |
|
|
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}"/> |
|
|
15 |
|
|
350
|
16 |
<script type="text/javascript" src="../../../static/lib/jquery/jquery.js" th:src="@{/static/lib/jquery/jquery.js}" ></script> |
|
235
|
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> |
|
|
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> |
|
|
19 |
<script type="text/javascript" src='../../../static/lib/spectrum.js' th:src="@{/static/lib/spectrum.js}"></script> |
|
|
20 |
<script type="text/javascript" src='../../../static/js/admin_form.js' th:src="@{/static/js/admin_form.js}"></script> |
|
|
21 |
<script th:remove="all" type="text/javascript" src="../../../static/js/thymol.js"></script> |
|
|
22 |
</head> |
|
|
23 |
<body> |
|
|
24 |
<div id="container"> |
|
|
25 |
<div id="wrapper"> |
|
|
26 |
<header id="header"> |
|
|
27 |
<h1><a href="renkanIndex.html" th:href="@{/admin}" th:text="#{renkanAdmin.renkan_admin}" id="home-link">Renkan administration</a></h1> |
|
|
28 |
<div id="headerNav" th:include="fragment/pageFragment :: headerNavFragment"></div> |
|
|
29 |
</header> |
|
|
30 |
<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_edit}">Edit group</span></h2> |
|
|
31 |
<div th:include="fragment/groupForm::groupFormFragment" id="inner-container"> |
|
|
32 |
</div> |
|
|
33 |
</div> |
|
|
34 |
<footer id="footer" th:substituteby="fragment/pageFragment::footerFragment"> |
|
|
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> |
|
|
36 |
</footer> |
|
|
37 |
</div> |
|
|
38 |
</body> |
|
|
39 |
</html> |