diff options
author | luxagraf <sng@luxagraf.net> | 2018-03-14 08:06:36 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-03-14 08:06:36 -0500 |
commit | 9878845c7de3bbe939a264ea0d70186cb1e66f1a (patch) | |
tree | 42f9b075daa28d8dd2efb89679f77fda230e29df /design | |
parent | c97baf9c40c40647bd15856f1028e4b52f123212 (diff) |
Added book to entry
Diffstat (limited to 'design')
-rw-r--r-- | design/templates/details/entry.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/design/templates/details/entry.html b/design/templates/details/entry.html index dd24b61..d5bd727 100644 --- a/design/templates/details/entry.html +++ b/design/templates/details/entry.html @@ -73,10 +73,10 @@ class="{%if t == 1 or t == 3 or t == 5 %}double{%else%}single{%endif%}{%if t == {% endfor %}</ul> </aside>{% endif %} {%if object.books.all %} - <aside id="field_notes"> + <aside id="recommended-reading"> <h3>Recommended Reading</h3> <ul>{% for obj in object.books.all %} - <li><a href="{% url 'books:detail' slug=obj.slug %}"><img src="{{obj.get_image_url}}" /></a></li> + <li><a href="{% url 'books:detail' slug=obj.slug %}"><img src="{{obj.get_small_image_url}}" /></a></li> {% endfor %}</ul> </aside>{% endif %} </div> |