Cite base
[wolnelektury.git] / src / social / templates / social / carousel.html
1 {% spaceless %}
2
3 {% load i18n %}
4
5 <div class="carousel carousel-{{ carousel.slug }}">
6   {% for item in carousel.carouselitem_set.all %}
7     {% with banner=item.get_banner %}
8     <!-- {{ banner.id }} -->
9       {% if banner %}
10         {% include 'social/cite_promo.html' with cite=banner main=True %}
11       {% endif %}
12     {% endwith %}
13   {% endfor %}
14 </div>
15
16 {% endspaceless %}