eabc961aa5811ebea49fc95925de101cb58b5d7f
[wolnelektury.git] / apps / social / templates / social / shelf_tags.html
1 {% if tags.exists %}
2 <ul class='social-shelf-tags'>
3     {% for tag in tags %}
4         <li><a href="{{ tag.get_absolute_url }}">{{ tag.name }}</a></li>
5     {% endfor %}
6 </ul>
7 {% endif %}