{% extends "listing.html" %} {% block datacontent %}

Places Listing

{% if place_list %} {% for place in place_list %} {% endfor %}
Name Address Zip City #km #min
{{ place.name }} {{ place.address }} {{ place.postal}} {{ place.city }} {% if place.nbkm %}{{ place.nbkm }}{% else %}0{% endif %} {% if place.timing %}{{ place.timing }}{% else %}0{% endif %}
{% else %}
There are no places corresponding to your criterias
{% endif %}
{% endblock %} {% block footerscript %} {% endblock %}