summaryrefslogtreecommitdiffstats
path: root/templates/packages/details_requiredby.html
blob: 504a322f77d863599eb3f30e1f20671ee5ee6107 (plain)
1
2
3
4
5
6
7
8
{% load package_extras %}<li>{% pkg_details_link req.pkg %}
{% if req.name != pkg.pkgname %}<span class="virtual-dep"> (requires {{ req.name }})</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.deptype == 'O' %}<span class="opt-dep"> (optional)</span>
{% endif %}{% if req.deptype == 'M' %}<span class="make-dep"> (make)</span>
{% endif %}{% if req.deptype == 'C' %}<span class="check-dep"> (check)</span>
{% endif %}</li>