diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-04-05 02:15:49 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-04-05 12:21:36 +0200 |
commit | afb02a10c64f2f45717dc1133e89e567e5d9e5d7 (patch) | |
tree | 533f53918ff14619a95064fb75324a341a45b335 | |
parent | f7d13b5b368f1432b9a1eb1798f94a70b9dc03b7 (diff) | |
download | aurweb-afb02a10c64f2f45717dc1133e89e567e5d9e5d7.tar.xz |
pkg_details.php: Add link to package base details
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
-rw-r--r-- | web/template/pkg_details.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/web/template/pkg_details.php b/web/template/pkg_details.php index bd08282..d4e4e4e 100644 --- a/web/template/pkg_details.php +++ b/web/template/pkg_details.php @@ -112,6 +112,10 @@ $sources = package_sources($row["ID"]); <table id="pkginfo"> <tr> + <th><?= __('Package Base') . ': ' ?></th> + <td class="wrap"><a href="<?= htmlspecialchars(get_pkgbase_uri($row['BaseName']), ENT_QUOTES); ?>"><?= htmlspecialchars($row['BaseName']); ?></a></td> + </tr> + <tr> <th><?= __('Description') . ': ' ?></th> <td class="wrap"><?= htmlspecialchars($row['Description']); ?></td> </tr> |