diff options
author | Bryan Newbold <bnewbold@charm.mit.edu> | 2008-03-02 21:50:35 -0500 |
---|---|---|
committer | Bryan Newbold <bnewbold@charm.mit.edu> | 2008-03-02 21:50:35 -0500 |
commit | 4c1e57f99caa6995b5a0c4fc362f10ac57d2557d (patch) | |
tree | 09abbdb2790ba98c1c8a7d91d3cf22b243b694f0 /bn_django/photos/templates | |
parent | c3ce21b633f71c7614f0878c1076408ea33ef8fe (diff) | |
download | bnewnet-4c1e57f99caa6995b5a0c4fc362f10ac57d2557d.tar.gz bnewnet-4c1e57f99caa6995b5a0c4fc362f10ac57d2557d.zip |
fixed a bunch of trailing '/' links
Diffstat (limited to 'bn_django/photos/templates')
-rw-r--r-- | bn_django/photos/templates/photos/gallery_detail.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bn_django/photos/templates/photos/gallery_detail.html b/bn_django/photos/templates/photos/gallery_detail.html index 2de76d7..6720204 100644 --- a/bn_django/photos/templates/photos/gallery_detail.html +++ b/bn_django/photos/templates/photos/gallery_detail.html @@ -15,7 +15,7 @@ <table width="100%" class="thumbs"> {% for item in object.photo_set.all %} {% cycle <tr/>, , , %} <td class="photo_thumb"> - <a href="../detail/{{ item.id }}"> + <a href="../detail/{{ item.id }}/"> <img src="{{ item.thumburl }}" alt="{{ item.title }}" /> </td> {% endfor %} |