{% extends "base.html" %} {% load static %} {% block css %} {% endblock css %} {% block content %} {% if cocktail %}

In totale nel nostro Salone Bar abbiamo trovato {{ cocktail.count }} cocktails {% if cocktail.count == 1 %} che corrisponde {% else %} che corrispondono {% endif %} alla tua ricerca

{% for cocktails in cocktail %} {% if forloop.first %}
{% endif %}
{{ cocktails.nome_cocktail }}
{{ cocktails.nome_cocktail }}

{{ cocktails.ingredienti.all|join:"," }}

{% if forloop.counter|divisibleby:"3" or forloop.last %}
{% endif %} {% if forloop.counter|divisibleby:"3" and not forloop.last %}
{% endif %} {% endfor %} {% endif %} {% if ingrediente and cocktail %}
{% elif ingrediente or cocktail %} {% else %}

Nessun Cocktail o Ingrediente trovato!

{% endif %} {% if ingrediente %}

Cocktails contenenti l'ingrediente "{{ querystring }}" :

{% for cocktails_ingrediente in ingrediente %} {% if forloop.first %}
{% endif %} {% if forloop.counter|divisibleby:"3" or forloop.last %}
{% endif %} {% if forloop.counter|divisibleby:"3" and not forloop.last %}
{% endif %} {% endfor %} {% endif %} {% endblock content %}