fix missing thead (#2385)
This commit is contained in:
parent
abd382c357
commit
23bb7d321a
8 changed files with 22 additions and 12 deletions
|
@ -68,11 +68,13 @@
|
|||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<table class="table table-bordered table-striped dataTable">
|
||||
<tbody>
|
||||
<table class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><la:message key="labels.backup_name"/></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<c:forEach var="data" varStatus="s"
|
||||
items="${backupItems}">
|
||||
<tr
|
||||
|
|
|
@ -90,7 +90,7 @@
|
|||
<c:if test="${crawlingInfoPager.allRecordCount > 0}">
|
||||
<div class="row top10">
|
||||
<div class="col-sm-12">
|
||||
<table class="table table-bordered table-striped dataTable">
|
||||
<table class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><la:message
|
||||
|
|
|
@ -110,7 +110,7 @@
|
|||
<c:if test="${failureUrlPager.allRecordCount > 0}">
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<table class="table table-bordered table-striped dataTable">
|
||||
<table class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><la:message key="labels.failure_url_url"/></th>
|
||||
|
|
|
@ -50,12 +50,14 @@
|
|||
<div class="data-wrapper">
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<table class="table table-bordered table-striped dataTable">
|
||||
<tbody>
|
||||
<table class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><la:message key="labels.log_file_name"/></th>
|
||||
<th><la:message key="labels.log_file_date"/></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<c:forEach var="logFile" varStatus="s"
|
||||
items="${logFileItems}">
|
||||
<tr
|
||||
|
|
|
@ -58,14 +58,16 @@
|
|||
<div class="data-wrapper">
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<table class="table table-bordered table-striped dataTable">
|
||||
<tbody>
|
||||
<table class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><la:message key="labels.plugin_type"/></th>
|
||||
<th><la:message key="labels.plugin_name"/></th>
|
||||
<th><la:message key="labels.plugin_version"/></th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<c:forEach var="artifact" varStatus="s" items="${installedArtifactItems}">
|
||||
<tr>
|
||||
<td>${f:h(artifact.type)}</td>
|
||||
|
|
|
@ -162,7 +162,7 @@
|
|||
<c:if test="${searchLogPager.allRecordCount > 0}">
|
||||
<div class="row top10">
|
||||
<div class="col-sm-12">
|
||||
<table class="table table-bordered table-striped dataTable">
|
||||
<table class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<c:if test="${!logType.endsWith('_agg')}">
|
||||
|
|
|
@ -144,8 +144,8 @@
|
|||
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<table class="table table-bordered table-striped dataTable">
|
||||
<tbody>
|
||||
<table class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><la:message key="labels.storage_name"/></th>
|
||||
<th style="width: 10%"><la:message key="labels.storage_size"/></th>
|
||||
|
@ -153,6 +153,8 @@
|
|||
key="labels.storage_last_modified"/></th>
|
||||
<th style="width: 20%"></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<c:if test="${not empty path and not empty parentId}">
|
||||
<tr
|
||||
data-href="${contextPath}/admin/storage/list/${f:u(data.parentId)}/">
|
||||
|
|
|
@ -48,13 +48,15 @@
|
|||
<div class="col-sm-12">
|
||||
<la:form action="/admin/suggest/">
|
||||
<table class="table table-bordered table-striped">
|
||||
<tbody>
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="width: 15%"><la:message key="labels.suggest_word_type"/></th>
|
||||
<th class="text-center" style="width: 10%"><la:message
|
||||
key="labels.suggest_word_number"/></th>
|
||||
<th class="text-center" style="width: 20%"></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><la:message key="labels.suggest_word_type_all"/></td>
|
||||
<td class="text-right">${f:h(totalWordsNum)}</td>
|
||||
|
|
Loading…
Add table
Reference in a new issue