diff options
author | eliott <eliott@cactuswax.net> | 2008-04-17 19:44:26 -0700 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2008-04-17 19:44:26 -0700 |
commit | 3d9c71dc0a5eeafcdd323cb1cbe06ff77d7c2d54 (patch) | |
tree | 5f3b85f2f3d9c5897b98bddc3cf505b5501b3583 /templates/packages/details.html | |
parent | dc6f471349d090245d7a1641e830bcb95a14e026 (diff) |
added more clarity to required_by fields
Diffstat (limited to 'templates/packages/details.html')
-rw-r--r-- | templates/packages/details.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/packages/details.html b/templates/packages/details.html index facb697f..7e8c7d36 100644 --- a/templates/packages/details.html +++ b/templates/packages/details.html @@ -70,7 +70,7 @@ <h4>Required By:</h4> <ul style="font-size:small;list-style:none"> {% for req in pkg.get_requiredby %} - <li><a href="/packages/{{ req.0 }}/">{{ req.1 }}</a></li> + <li><a href="/packages/{{ req.id }}/">{{ req.pkgname }}{% ifequal req.repo.name "Testing" %}(testing){% endifequal %}{% ifequal req.repo.name "Unstable" %}(unstable){% endifequal %}</a></li> {% endfor %} </ul> </div> |