diff options
author | luxagraf <sng@luxagraf.net> | 2018-04-12 21:44:04 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-04-12 21:44:04 -0400 |
commit | f7311cd8afc092981d4871b867304f1f57406610 (patch) | |
tree | 90b08cf092a978ce9b39dda427a9d121af7b845f /design | |
parent | 9ec405f41c41e35596d82b8dab1443adabd6ed76 (diff) |
fixed a bug in entry detail template
Diffstat (limited to 'design')
-rw-r--r-- | design/templates/details/entry.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/design/templates/details/entry.html b/design/templates/details/entry.html index cec3b9c..c1c4acc 100644 --- a/design/templates/details/entry.html +++ b/design/templates/details/entry.html @@ -73,7 +73,7 @@ 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="recommended-reading{%if object.field_notes.all and wildlife %} rr-clear{%endif%}" > + <aside id="recommended-reading" {%if object.field_notes.all and wildlife %}class="rr-clear{%endif%}" > <h3>Recommended Reading</h3> <ul>{% for obj in object.books.all %} <li><a href="{% url 'books:detail' slug=obj.slug %}"><img src="{{obj.get_small_image_url}}" /></a></li> |