--- a/server/src/main/webapp/WEB-INF/templates/admin/objectsList.html Mon Mar 25 19:49:19 2013 +0100
+++ b/server/src/main/webapp/WEB-INF/templates/admin/objectsList.html Tue Mar 26 08:26:43 2013 +0100
@@ -13,8 +13,11 @@
<link rel="shortcut icon" href="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}"/>
+ <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.min.js"></script>
+ <script th:remove="all" type="text/javascript" src="../../../static/js/thymol.js"></script>
</head>
<body>
<div id="container">
@@ -48,14 +51,15 @@
<thead>
<tr>
<th th:text="#{renkanAdmin.object_name}">Name</th>
- <th th:text="#{renkanAdmin.object_open}">Edit</th>
+ <th th:text="#{renkanAdmin.object_edit}">Edit</th>
<th th:text="#{renkanAdmin.object_delete}">Delete</th>
</tr>
</thead>
<tbody>
<tr th:each="object: ${page.content}">
<th th:text="${object.title}">title</th>
- <td><a href="#" th:href="@{'/s/'+${object.id}}" th:text="#{renkanAdmin.object_open_link}">open object</a></td>
+ <td><a href="#" th:href="@{'/s/'+${object.id}}" th:text="#{renkanAdmin.object_edit_link}">Edit</a></td>
+ <td><a href="#" th:href="@{'/s/'+${object.id}}" th:text="#{renkanAdmin.object_delete_link}">Delete</a></td>
</tr>
</tbody>
</table>