server/src/main/webapp/WEB-INF/templates/admin/spaceEdit.html
author ymh <ymh.work@gmail.com>
Mon, 08 Apr 2013 01:20:47 +0200
changeset 150 5b62100b8562
parent 127 906fed13c1e1
child 222 6ac00231ee34
permissions -rw-r--r--
- replace simple http authentication by form auth - added nav bar in header
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>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" >
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
    
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    15
    <script type="text/javascript" src="../../../static/lib/jquery.min.js" th:src="@{/static/lib/jquery.min.js}" ></script>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    16
    <script type="text/javascript" src="../../../static/lib/jquery-ui.min.js" th:src="@{/static/lib/jquery-ui.min.js}" ></script>
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>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    19
    <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
    20
  </head>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    21
  <body>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    22
    <div id="container">
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    23
      <div id="wrapper">
150
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
    24
        <header id="header">
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
    25
            <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
    26
            <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
    27
        </header>
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    28
        <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
    29
        <div th:include="fragment/spaceForm::spaceFormFragment" id="inner-container">
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    30
        </div>
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
      <footer id="footer" th:substituteby="fragment/pageFragment::footerFragment">
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    33
        <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>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    34
      </footer>      
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    35
    </div>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    36
  </body>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    37
</html>