cache fix
[wolnelektury.git] / apps / social / templates / social / cite_promo.html
1 {% load i18n %}
2
3 {% if cite %}
4 <a href="{{ cite.get_absolute_url }}" class="cite">
5     {% if cite.vip %}
6         <p class='vip mono'>{{ cite.vip }} {% trans "recommends" %}:</p>
7     {% endif %}
8     <blockquote class="cite-body">
9         {{ cite.text|linebreaks|safe }}
10     </blockquote>
11     <p class="source mono">{{ cite.book.pretty_title }}</p>
12 </a>
13 {% else %}
14     {% if fallback %}
15         {% load fragment_promo from catalogue_tags %}
16         {% fragment_promo ctx %}
17     {% endif %}
18 {% endif %}