aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <askh@modwheel.net>2009-03-20 15:44:20 +0100
committerAsk Solem Hoel <askh@opera.com>2009-03-20 15:44:20 +0100
commit60fd893b12d3187b6bf3c91649a861351400ed87 (patch)
tree58ab850b3be48dc08a008735a89f02528de3672c
parent61d945a363f2bd7f21459e91dffc545c18cfba51 (diff)
downloadchishop-60fd893b12d3187b6bf3c91649a861351400ed87.tar.bz2
chishop-60fd893b12d3187b6bf3c91649a861351400ed87.tar.xz
chishop-60fd893b12d3187b6bf3c91649a861351400ed87.zip
Add missing " at end of A href
-rw-r--r--djangopypi/templates/djangopypi/show_links.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/djangopypi/templates/djangopypi/show_links.html b/djangopypi/templates/djangopypi/show_links.html
index dfbb63d..a66cd53 100644
--- a/djangopypi/templates/djangopypi/show_links.html
+++ b/djangopypi/templates/djangopypi/show_links.html
@@ -2,7 +2,7 @@
2<h1>Links for {{ dist_name }}</h1> 2<h1>Links for {{ dist_name }}</h1>
3 3
4{% for release in releases %} 4{% for release in releases %}
5<a href="/media/{{ release.path }}#md5={{ release.dist_md5sum }} 5<a href="/media/{{ release.path }}#md5={{ release.dist_md5sum }}"
6>{{ release.filename }}</a><br /> 6>{{ release.filename }}</a><br />
7{% endfor %} 7{% endfor %}
8</body></html> 8</body></html>