server/java/renkan-web/src/main/webapp/WEB-INF/templates/admin/spaceEdit.html
author ymh <ymh.work@gmail.com>
Wed, 04 Mar 2015 09:39:11 +0100
changeset 395 2e8c92eb0dfa
parent 350 0b6f2883a67b
permissions -rw-r--r--
Added tag V00.08.04 for changeset 95d6545c79e5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
127
906fed13c1e1 space admin edit.
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()}">
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
  <head>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
    <title>Renkan Admin - edit space</title>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
    <meta charset="utf-8"/>
906fed13c1e1 space admin edit.
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"/>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
    <link rel="shortcut icon" href="../../../static/img/favicon.ico" th:href="@{/static/img/favicon.ico}" />
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
    <link href="../../../static/css/style.css" rel="stylesheet" th:href="@{/static/css/style.css}"/>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12
    <link href="../../../static/css/index.css" rel="stylesheet" th:href="@{/static/css/index.css}"/>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
    <link href='../../../static/css/spectrum.css' rel="stylesheet" th:href="@{/static/css/spectrum.css}"/>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    14
    
350
0b6f2883a67b update path to the new lib folders
rougeronj
parents: 316
diff changeset
    15
    <script type="text/javascript" src="../../../static/lib/jquery/jquery.js" th:src="@{/static/lib/jquery/jquery.js}" ></script>
222
6ac00231ee34 Manage users. (not passwords)
ymh <ymh.work@gmail.com>
parents: 150
diff changeset
    16
    <script type="text/javascript" src="../../../static/lib/jquery-ui/jquery-ui.min.js" th:src="@{/static/lib/jquery-ui/jquery-ui.min.js}" ></script>
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    17
    <script type="text/javascript" src="../../../static/lib/ace/ace.js" th:src="@{/static/lib/ace/ace.js}" charset="utf-8"></script>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    18
    <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: 150
diff changeset
    19
    <script type="text/javascript" src='../../../static/js/admin_form.js' th:src="@{/static/js/admin_form.js}"></script>
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    20
    <script th:remove="all" type="text/javascript" src="../../../static/js/thymol.js"></script>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    21
  </head>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    22
  <body>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    23
    <div id="container">
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    24
      <div id="wrapper">
150
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
    25
        <header id="header">
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
    26
            <h1><a href="renkanIndex.html" th:href="@{/admin}" th:text="#{renkanAdmin.renkan_admin}" id="home-link">Renkan administration</a></h1>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
    27
            <div id="headerNav" th:include="fragment/pageFragment :: headerNavFragment"></div>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
    28
        </header>
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    29
        <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_edit}">Edit space</span></h2>
150
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
    30
        <div th:include="fragment/spaceForm::spaceFormFragment" id="inner-container">
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    31
        </div>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    32
      </div>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    33
      <footer id="footer" th:substituteby="fragment/pageFragment::footerFragment">
235
f8746a482459 Add first version of group
ymh <ymh.work@gmail.com>
parents: 224
diff changeset
    34
        <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>
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    35
      </footer>      
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    36
    </div>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    37
  </body>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    38
</html>