title trop long
This commit is contained in:
parent
dfcf6abad5
commit
df1907d65c
|
|
@ -11,50 +11,51 @@
|
|||
<br/>
|
||||
<div class="row align-items-center">
|
||||
|
||||
{# <img src="assets/img/path3.png" class="path path1">#}
|
||||
{# <img src="assets/img/path3.png" class="path path1">#}
|
||||
{% for event in events %}
|
||||
{% if forloop.counter0|divisibleby:"4" %}
|
||||
<div class="col-lg-6">
|
||||
{% else %}
|
||||
<div class="col-lg-3">
|
||||
{% endif %}
|
||||
<a href="{% url 'show_event' event.slug %}" >
|
||||
<div class="card card-blog card-background" data-animation="zooming">
|
||||
<div class="full-background"
|
||||
style="background-image: url('{{ MEDIA_PREFIX }}{{ event.img.fhd }}')"></div>
|
||||
<div class="card-body">
|
||||
<div class="content-bottom">
|
||||
<h5 class="card-title">{{ event.datetime | date:"D d F Y" }} {{ event.datetime | time }}</h5>
|
||||
<a href="{% url 'show_event' event.slug %}">
|
||||
<div class="card card-blog card-background" data-animation="zooming">
|
||||
<div class="full-background"
|
||||
style="background-image: url('{{ MEDIA_PREFIX }}{{ event.img.fhd }}')"></div>
|
||||
<div class="card-body">
|
||||
<div class="content-bottom">
|
||||
<h5 class="card-title">{{ event.datetime | date:"D d F Y" }} {{ event.datetime | time }}</h5>
|
||||
|
||||
{% for product in event.products.all %}
|
||||
{% if product.categorie_article == categorie_billet %}
|
||||
<h5 class="card-title">
|
||||
{% for price in product.prices.all %}
|
||||
{% if forloop.first %}
|
||||
{{ price.prix | floatformat:"-2" }}€
|
||||
{% else %}
|
||||
/ {{ price.prix | floatformat:"-2" }}€
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</h5>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% for product in event.products.all %}
|
||||
{% if product.categorie_article == categorie_billet %}
|
||||
<h5 class="card-title">
|
||||
{% for price in product.prices.all %}
|
||||
{% if forloop.first %}
|
||||
{{ price.prix | floatformat:"-2" }}€
|
||||
{% else %}
|
||||
/ {{ price.prix | floatformat:"-2" }}€
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</h5>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
|
||||
<h3 class="card-title">{{ event.name }}</h3>
|
||||
</div>
|
||||
</div>
|
||||
<h3 class="card-title">{{ event.name }}</h3>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- ********* END BLOGS 1 ********* -->
|
||||
|
||||
</div>
|
||||
<!-- ********* END BLOGS 1 ********* -->
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
<div class="navbar-translate">
|
||||
<a class="navbar-brand" href="/#" rel="tooltip"
|
||||
data-placement="bottom">
|
||||
<span>{{ configuration.organisation }} •</span> TiBillet
|
||||
<span>{{ configuration.organisation }}</span>
|
||||
</a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation"
|
||||
aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
|
||||
|
|
|
|||
Loading…
Reference in New Issue