server/src/main/webapp/WEB-INF/templates/admin/adminIndex.html
changeset 309 0c3e6e66881f
parent 308 7fcb9d12e181
child 310 bfbc253de80f
equal deleted inserted replaced
308:7fcb9d12e181 309:0c3e6e66881f
     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</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     
       
    14     <script th:remove="all" type="text/javascript" src="../../../static/lib/jquery.min.js"></script>
       
    15     <script th:remove="all" type="text/javascript" src="../../../static/js/thymol.js"></script> 
       
    16   </head>
       
    17   <body>
       
    18     <div id="container">
       
    19       <div id="wrapper" th:with="headerTitle=#{renkanAdmin.renkan_admin}">
       
    20         <header id="header" th:include="fragment/pageFragment :: headerFragment">
       
    21             <h1 th:text="#{renkanAdmin.renkan_admin}">Renkan administration</h1>
       
    22         </header>
       
    23         <h2 th:text="#{renkanAdmin.site_admin}">Site administration</h2>
       
    24         <table id="object_list">
       
    25               <thead>
       
    26                 <tr>
       
    27                     <th th:text="#{renkanAdmin.object}">Object</th>
       
    28                     <th>&nbsp;</th>
       
    29                 </tr>
       
    30               </thead>
       
    31               <tbody>
       
    32                 <tr>
       
    33                   <td colspan="2"><a href="spacesList.html" th:href="@{/admin/spaces}" th:text="#{renkanAdmin.space_objects_name}">Spaces</a></td>
       
    34                 </tr>
       
    35                 <tr>
       
    36                   <td colspan="2"><a href="usersList.html" th:href="@{/admin/users}" th:text="#{renkanAdmin.user_objects_name}">Users</a></td>
       
    37                 </tr>
       
    38                 <tr>
       
    39                   <td colspan="2"><a href="groupsList.html" th:href="@{/admin/groups}" th:text="#{renkanAdmin.group_objects_name}">Groups</a></td>
       
    40                 </tr>
       
    41               </tbody>        
       
    42         </table>
       
    43       </div>
       
    44       <footer id="footer" th:substituteby="fragment/pageFragment::footerFragment">
       
    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>
       
    46       </footer>      
       
    47     </div>
       
    48   </body>
       
    49 </html>