Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
norm committed Aug 8, 2021
1 parent 138ecea commit a46aaf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/wearers/wearer_page.html
Expand Up @@ -18,7 +18,7 @@ <h2>most recently worn</h2>
<h2>most worn in the last six months</h2>
{% for worn in wearer.most_worn_recently|slice:':12' %}
<li>
{% thumbnail wearing.clothing.image "100x100" crop="center" as thumb %}
{% thumbnail worn.clothing.image "100x100" crop="center" as thumb %}
<img src='{{thumb.url}}' alt=''>
{% endthumbnail %}
<a href='{{worn.clothing.static_site_url}}'>{{worn.clothing}}</a> worn {{worn.num_worn}} times</li>
Expand All @@ -27,7 +27,7 @@ <h2>most worn in the last six months</h2>
<h2>most worn of all all time</h2>
{% for worn in wearer.most_worn|slice:':12' %}
<li>
{% thumbnail wearing.clothing.image "100x100" crop="center" as thumb %}
{% thumbnail worn.clothing.image "100x100" crop="center" as thumb %}
<img src='{{thumb.url}}' alt=''>
{% endthumbnail %}
<a href='{{worn.clothing.static_site_url}}'>{{worn.clothing}}</a> worn {{worn.num_worn}} times</li>
Expand Down

0 comments on commit a46aaf3

Please sign in to comment.