templates/vehicule/index.html.twig line 1
{% extends 'base.html.twig' %}
{% block title %}228Deals Vehicules!{% endblock %}
{% block stylesheets %}
.form-mobile-vh {
display: none;
}
@media (max-width: 480px) {
.form-mobile-vh {
display: block;
}
.form-common-vh {
display: none;
}
}
{% endblock %}
{% block body %}
Les Récentes publications
{% for v in vehicules %}
{% if v.typeoperation == "LOCATION" %}
A LOUER
{% else %}
A VENDRE
{% endif %}
{% endfor %}
{% endblock %}