server/java/renkan-web/src/main/webapp/WEB-INF/templates/admin/adminIndex.html
author ymh <ymh.work@gmail.com>
Sun, 14 Jul 2024 22:00:08 +0200
changeset 666 9d6550026232
parent 350 0b6f2883a67b
permissions -rw-r--r--
Added tag V00.13.04 for changeset 69d13e7dd286
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: 218
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</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
    
350
0b6f2883a67b update path to the new lib folders
rougeronj
parents: 316
diff changeset
    14
    <script th:remove="all" type="text/javascript" src="../../../static/lib/jquery/jquery.js"></script>
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    15
    <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
    16
  </head>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    17
  <body>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    18
    <div id="container">
150
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
    19
      <div id="wrapper" th:with="headerTitle=#{renkanAdmin.renkan_admin}">
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
    20
        <header id="header" th:include="fragment/pageFragment :: headerFragment">
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
    21
            <h1 th:text="#{renkanAdmin.renkan_admin}">Renkan administration</h1>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
    22
        </header>
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    23
        <h2 th:text="#{renkanAdmin.site_admin}">Site administration</h2>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    24
        <table id="object_list">
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    25
              <thead>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    26
                <tr>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    27
                    <th th:text="#{renkanAdmin.object}">Object</th>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    28
                    <th>&nbsp;</th>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    29
                </tr>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    30
              </thead>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    31
              <tbody>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    32
                <tr>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    33
                  <td colspan="2"><a href="spacesList.html" th:href="@{/admin/spaces}" th:text="#{renkanAdmin.space_objects_name}">Spaces</a></td>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    34
                </tr>
218
aaf55e08827a Add user admin controller
ymh <ymh.work@gmail.com>
parents: 150
diff changeset
    35
                <tr>
aaf55e08827a Add user admin controller
ymh <ymh.work@gmail.com>
parents: 150
diff changeset
    36
                  <td colspan="2"><a href="usersList.html" th:href="@{/admin/users}" th:text="#{renkanAdmin.user_objects_name}">Users</a></td>
aaf55e08827a Add user admin controller
ymh <ymh.work@gmail.com>
parents: 150
diff changeset
    37
                </tr>
235
f8746a482459 Add first version of group
ymh <ymh.work@gmail.com>
parents: 224
diff changeset
    38
                <tr>
f8746a482459 Add first version of group
ymh <ymh.work@gmail.com>
parents: 224
diff changeset
    39
                  <td colspan="2"><a href="groupsList.html" th:href="@{/admin/groups}" th:text="#{renkanAdmin.group_objects_name}">Groups</a></td>
f8746a482459 Add first version of group
ymh <ymh.work@gmail.com>
parents: 224
diff changeset
    40
                </tr>
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    41
              </tbody>        
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    42
        </table>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    43
      </div>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    44
      <footer id="footer" th:substituteby="fragment/pageFragment::footerFragment">
218
aaf55e08827a Add user admin controller
ymh <ymh.work@gmail.com>
parents: 150
diff changeset
    45
        <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
    46
      </footer>      
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    47
    </div>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    48
  </body>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    49
</html>