mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
tu_list.php: Hide table if no results are found
Instead of showing a table with a single "No results found." entry, do not show the table at all and display the text "No results found." in a <p></p> container. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
3130a887e8
commit
54ad28369a
1 changed files with 13 additions and 12 deletions
|
@ -7,6 +7,9 @@
|
|||
</ul>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (empty($result)): ?>
|
||||
<p><?= __("No results found.") ?></p>
|
||||
<?php else: ?>
|
||||
<table class="results">
|
||||
<thead>
|
||||
<tr>
|
||||
|
@ -21,14 +24,13 @@
|
|||
</thead>
|
||||
|
||||
<tbody>
|
||||
<?php if (empty($result)): ?>
|
||||
<tr><td align="center" colspan="0"><?= __("No results found.") ?></td></tr>
|
||||
<?php else: while (list($indx, $row) = each($result)):
|
||||
if ($indx % 2):
|
||||
<?php while (list($indx, $row) = each($result)): ?>
|
||||
<?php
|
||||
if ($indx % 2) {
|
||||
$c = "even";
|
||||
else:
|
||||
} else {
|
||||
$c = "odd";
|
||||
endif;
|
||||
}
|
||||
?>
|
||||
<tr class="<?= $c ?>">
|
||||
<td><?php $row["Agenda"] = htmlspecialchars(substr($row["Agenda"], 0, $prev_Len)); ?>
|
||||
|
@ -54,12 +56,10 @@
|
|||
<?php endif; ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
endwhile;
|
||||
endif;
|
||||
?>
|
||||
<?php endwhile; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div class="pkglist-stats">
|
||||
<p class="pkglist-nav">
|
||||
<?php if ($result):
|
||||
|
@ -74,4 +74,5 @@
|
|||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue