mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
pkgreq_results.php: Split out package results box
Do not include the wrapper div container in the template. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
parent
ff8eb62a75
commit
05007d8b1a
2 changed files with 126 additions and 126 deletions
|
@ -77,7 +77,9 @@ if (isset($base_id)) {
|
||||||
$SID = $_COOKIE['AURSID'];
|
$SID = $_COOKIE['AURSID'];
|
||||||
|
|
||||||
html_header(__("Requests"));
|
html_header(__("Requests"));
|
||||||
|
echo '<div id="pkglist-results" class="box">';
|
||||||
include('pkgreq_results.php');
|
include('pkgreq_results.php');
|
||||||
|
echo '</div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
html_footer(AURWEB_VERSION);
|
html_footer(AURWEB_VERSION);
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
<div id="pkglist-results" class="box">
|
|
||||||
<div class="pkglist-stats">
|
<div class="pkglist-stats">
|
||||||
<p>
|
<p>
|
||||||
<?= _n('%d package request found.', '%d package requests found.', $total) ?>
|
<?= _n('%d package request found.', '%d package requests found.', $total) ?>
|
||||||
|
@ -126,4 +125,3 @@
|
||||||
</p>
|
</p>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue