roleSearch.jsp
1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<%@ page import="com.myproject.bean.Authority" %><%--
Created by IntelliJ IDEA.
User: kangmor
Date: 2015/12/2
Time: 21:31
--%>
<%@ include file="/common/taglibs.jsp" %>
<%@ page language="java" pageEncoding="UTF-8"%>
<%--<link href="${ctx}/assets/global/css/plugins.css" rel="stylesheet" type="text/css"/>--%>
<%--<link href="${ctx}/assets/global/plugins/bootstrap-switch/css/bootstrap-switch.min.css" rel="stylesheet" type="text/css"/>--%>
<!-- BEGIN PAGE HEADER-->
<h3 class="page-title">
<fmt:message key="menu.user"/> <small><fmt:message key="role.search.subtitle"/> </small>
</h3>
<div class="portlet box blue">
<div class="portlet-title">
<div class="caption">
<i class="fa fa-list-alt"></i><fmt:message key="role.search.subtitle"/>
</div>
<div class="actions">
<a href="roleUpdate.html" class="btn btn-default btn-sm">
<i class="fa fa-plus"></i> <fmt:message key="button.add"/> </a>
</div>
</div>
<div class="portlet-body">
<display:table name="roles" class="table table-condensed table-striped table-hover" partialList="list">
<display:column property="name" sortable="false" titleKey="role.update.name"
url="/user/roleUpdate.html" paramId="id" paramProperty="id"/>
<display:column property="description" titleKey="role.update.description"/>
</display:table>
</div>
</div>