diff options
author | Dan McGee <dan@archlinux.org> | 2012-02-08 17:06:21 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-02-18 19:17:56 -0600 |
commit | 77f38be3625395a5502cab7403c8e010171ce3f8 (patch) | |
tree | 3abe90341930bf646b423b4ad95532bf47bca173 /templates/packages/details_requiredby.html | |
parent | 03a0d27971898592698dbb0c5948b93c6a3a4741 (diff) |
Factor out requiredby details into a template
This is similar to the previous commit doing the same for depends. We
also add a '(staging)' text for use down the road.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/packages/details_requiredby.html')
-rw-r--r-- | templates/packages/details_requiredby.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/packages/details_requiredby.html b/templates/packages/details_requiredby.html new file mode 100644 index 00000000..c7697289 --- /dev/null +++ b/templates/packages/details_requiredby.html @@ -0,0 +1,7 @@ +{% load package_extras %} +<li>{% pkg_details_link req.pkg %} +{% if req.depname != pkg.pkgname %}<span class="virtual-dep">(requires {{ req.depname }})</span>{% endif %} +{% if req.pkg.repo.testing %}<span class="testing-dep">(testing)</span>{% endif %} +{% if req.pkg.repo.staging %}<span class="staging-dep">(staging)</span>{% endif %} +{% if req.optional %}<span class="opt-dep">(optional)</span>{% endif %} +</li> |