aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--templates/rrs/recipedetail.html12
1 files changed, 9 insertions, 3 deletions
diff --git a/templates/rrs/recipedetail.html b/templates/rrs/recipedetail.html
index 473b3c7499..a91703d671 100644
--- a/templates/rrs/recipedetail.html
+++ b/templates/rrs/recipedetail.html
@@ -147,9 +147,15 @@
<dd><a href="{{ recipe.bugtracker }}">{{ recipe.bugtracker }}</a></dd>
{% endif %}
- {% if recipe.src_uri %}
- <dt>Source URI</dt>
- <dd><a href="{{ recipe.src_uri }}">{{ recipe.src_uri }}</a></dd>
+ {% if recipe.source_set.exists %}
+ <dt>Sources</dt>
+ <dd>
+ <ul class="unstyled">
+ {% for source in recipe.source_set.all %}
+ <li><a href="{{ source.url }}">{{ source.url }}</a></li>
+ {% endfor %}
+ </ul>
+ </dd>
{% endif %}
{% if recipe_provides %}