summaryrefslogtreecommitdiffstats
path: root/templates/packages/details_requiredby.html
blob: 24f8bbb1f25375cf959d0b6664ec2f2b7d11ffb0 (plain)
1
2
3
4
5
6
7
8
9
{% 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>