summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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();