recommendations on opsingle badge page will not show if there are no recommendations

This commit is contained in:
Joe Curlee 2013-06-03 11:49:07 -05:00
Родитель 2d17e29287
Коммит df234fb9a4
1 изменённых файлов: 19 добавлений и 17 удалений

Просмотреть файл

@ -22,21 +22,23 @@
</div>
</div>
<h3><a href="/badges">Similar or Related Badges</a></h3>
<p>If you're interested in this badge, you might be interested in these too. These are badges on similar STEAM topics or ones that can take you to the next level.</p>
<ul class="thumbnails">
{% for relatedBadge in relatedBadges %}
<li class="span3">
<figure class="thumbnail">
<a href=""><img src="{{relatedBadge.image}}"></a>
<figcaption class="caption">
<p>{{relatedBadge.description}}</p>
<p class="text-right">
<a href="" class="btn">Details</a>
</p>
</figcaption>
</figure>
</li>
{% endfor %}
</ul>
{% if relatedBadges and relatedBadges|length > 0 %}
<h3><a href="/badges">Similar or Related Badges</a></h3>
<p>If you're interested in this badge, you might be interested in these too. These are badges on similar STEAM topics or ones that can take you to the next level.</p>
<ul class="thumbnails">
{% for relatedBadge in relatedBadges %}
<li class="span3">
<figure class="thumbnail">
<a href=""><img src="{{relatedBadge.image}}"></a>
<figcaption class="caption">
<p>{{relatedBadge.description}}</p>
<p class="text-right">
<a href="" class="btn">Details</a>
</p>
</figcaption>
</figure>
</li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}