28 lines
1.0 KiB
HTML
28 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
|
|
<div class="appPage listPage">
|
|
<form id="listForm">
|
|
<div class="tableWrap">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th class="sort-bar">名称</th>
|
|
<th class="options">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr th:each="item : ${list}">
|
|
<td th:text="${item.name}"></td>
|
|
<td>
|
|
<shiro:hasPermission name="extraField:edit">
|
|
<a data-permission="extraField:edit" th:href="|javascript:Dialog.functionDialog(null, null, 'extraField/dialog/edit.html?space=${item.key}&title=${item.name}')|"> 设置</a>
|
|
</shiro:hasPermission>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</html>
|