server/java/renkan-web/src/main/webapp/WEB-INF/templates/admin/adminIndex.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

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" th:lang="${#ctx.getLocale().toLanguageTag()}">
  <head>
    <title>Renkan Admin</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta charset="utf-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>

    <link rel="shortcut icon" href="../../../static/img/favicon.ico" th:href="@{/static/img/favicon.ico}" />

    <link href="../../../static/css/style.css" rel="stylesheet" th:href="@{/static/css/style.css}"/>
    <link href="../../../static/css/index.css" rel="stylesheet" th:href="@{/static/css/index.css}"/>
    
    <script th:remove="all" type="text/javascript" src="../../../static/lib/jquery/jquery.js"></script>
    <script th:remove="all" type="text/javascript" src="../../../static/js/thymol.js"></script> 
  </head>
  <body>
    <div id="container">
      <div id="wrapper" th:with="headerTitle=#{renkanAdmin.renkan_admin}">
        <header id="header" th:include="fragment/pageFragment :: headerFragment">
            <h1 th:text="#{renkanAdmin.renkan_admin}">Renkan administration</h1>
        </header>
        <h2 th:text="#{renkanAdmin.site_admin}">Site administration</h2>
        <table id="object_list">
              <thead>
                <tr>
                    <th th:text="#{renkanAdmin.object}">Object</th>
                    <th>&nbsp;</th>
                </tr>
              </thead>
              <tbody>
                <tr>
                  <td colspan="2"><a href="spacesList.html" th:href="@{/admin/spaces}" th:text="#{renkanAdmin.space_objects_name}">Spaces</a></td>
                </tr>
                <tr>
                  <td colspan="2"><a href="usersList.html" th:href="@{/admin/users}" th:text="#{renkanAdmin.user_objects_name}">Users</a></td>
                </tr>
                <tr>
                  <td colspan="2"><a href="groupsList.html" th:href="@{/admin/groups}" th:text="#{renkanAdmin.group_objects_name}">Groups</a></td>
                </tr>
              </tbody>        
        </table>
      </div>
      <footer id="footer" th:substituteby="fragment/pageFragment::footerFragment">
        <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>
      </footer>      
    </div>
  </body>
</html>