summaryrefslogtreecommitdiff
path: root/groups.php
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-02-19 10:19:25 +0100
committerErich Eckner <git@eckner.net>2019-02-19 10:19:25 +0100
commit88ee8652dcb8c7902ecef92b1b7e2fd8f128d35d (patch)
treec945ba2906d3fa2c3ee35a2f28e3b355e1b4c5e1 /groups.php
parentd5248aa6aa2cbd2f78c2ccdc1c06c8b5b45af84a (diff)
downloadarchweb32-88ee8652dcb8c7902ecef92b1b7e2fd8f128d35d.tar.xz
groups.php: fix some stray html stuff
Diffstat (limited to 'groups.php')
-rw-r--r--groups.php16
1 files changed, 5 insertions, 11 deletions
diff --git a/groups.php b/groups.php
index cfea8f4..b372712 100644
--- a/groups.php
+++ b/groups.php
@@ -78,7 +78,10 @@ if (count($uri_parts) == 0) {
}
print_header('Package Groups');
+ print " <div class=\"box\">\n";
+ print " <h2>Package Groups Overview</h2>\n";
print_listing($groups, true, 'group');
+ print " </div>\n";
print_footer();
die();
@@ -111,18 +114,9 @@ print " <h2>\n";
print " Group Details - " . $group . " (" . $repo_arch . ")\n";
print " </h2>\n";
print " <p>" . count($packages) . " packages found.</p>\n";
-print " <table class=\"results\">\n";
-print " <thead>\n";
-print " <tr>\n";
-foreach ($sorts as $sort) {
- print " <th>\n";
- print " " . $sort['label'] . "\n";
- print " </th>\n";
-}
-print " </tr>\n";
-print " </thead>\n";
-print " <tbody>\n";
print_listing($packages, true, 'package');
+print " </div>\n";
+
print_footer();