fix missing thead (#2385)

This commit is contained in:
Ryo Kuramoto 2020-02-12 21:18:30 +09:00 committed by GitHub
parent abd382c357
commit 23bb7d321a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 22 additions and 12 deletions

View file

@ -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

View file

@ -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

View file

@ -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>

View file

@ -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

View file

@ -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>

View file

@ -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')}">

View file

@ -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)}/">

View file

@ -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>