Fix minor styles (#2438)
This commit is contained in:
parent
82e39d9c61
commit
2792584aff
3 changed files with 31 additions and 27 deletions
|
@ -112,7 +112,7 @@
|
|||
</div>
|
||||
<c:set var="pager" value="${kuromojiPager}" scope="request"/>
|
||||
<div class="row">
|
||||
<div class="col-sm-10">
|
||||
<div class="col-sm-2">
|
||||
<la:message key="labels.pagination_page_guide_msg"
|
||||
arg0="${f:h(pager.currentPageNumber)}"
|
||||
arg1="${f:h(pager.allPageCount)}"
|
||||
|
|
|
@ -74,7 +74,7 @@
|
|||
</div>
|
||||
<%-- List --%>
|
||||
<c:if test="${elevateWordPager.allRecordCount == 0}">
|
||||
<div class="row top10">
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<em class="fa fa-info-circle text-primary"></em>
|
||||
<la:message key="labels.list_could_not_find_crud_table"/>
|
||||
|
|
|
@ -60,31 +60,35 @@
|
|||
</div>
|
||||
</c:if>
|
||||
<c:if test="${fileAuthPager.allRecordCount > 0}">
|
||||
<table class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><la:message key="labels.file_auth_list_hostname"/></th>
|
||||
<th><la:message
|
||||
key="labels.file_auth_list_file_crawling_config"/></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<c:forEach var="data" varStatus="s"
|
||||
items="${fileAuthenticationItems}">
|
||||
<tr
|
||||
data-href="${contextPath}/admin/fileauth/details/4/${f:u(data.id)}">
|
||||
<td><c:if
|
||||
test="${data.hostname==null||data.hostname==''}">
|
||||
<la:message key="labels.file_auth_any"/>
|
||||
</c:if> ${f:h(data.hostname)}: <c:if
|
||||
test="${data.port==null||data.port==''}">
|
||||
<la:message key="labels.file_auth_any"/>
|
||||
</c:if> ${f:h(data.port)}</td>
|
||||
<td>${f:h(data.fileConfig.name)}</td>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="row top10">
|
||||
<div class="col-sm-12">
|
||||
<table class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><la:message key="labels.file_auth_list_hostname"/></th>
|
||||
<th><la:message
|
||||
key="labels.file_auth_list_file_crawling_config"/></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<c:forEach var="data" varStatus="s"
|
||||
items="${fileAuthenticationItems}">
|
||||
<tr
|
||||
data-href="${contextPath}/admin/fileauth/details/4/${f:u(data.id)}">
|
||||
<td><c:if
|
||||
test="${data.hostname==null||data.hostname==''}">
|
||||
<la:message key="labels.file_auth_any"/>
|
||||
</c:if> ${f:h(data.hostname)}: <c:if
|
||||
test="${data.port==null||data.port==''}">
|
||||
<la:message key="labels.file_auth_any"/>
|
||||
</c:if> ${f:h(data.port)}</td>
|
||||
<td>${f:h(data.fileConfig.name)}</td>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<c:set var="pager" value="${fileAuthPager}" scope="request"/>
|
||||
<c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp"/>
|
||||
<c:if test="${pager.currentPageNumber > pager.allPageCount}">
|
||||
|
|
Loading…
Add table
Reference in a new issue