fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
4d3e4e50c962cb7e0d6252860e2736f54f51c770
[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 %}