{% extends "base.html" %} {% load static %} {% block css %} {% endblock css %} {% block content %} {% for cocktail in random_cocktail %} {% if forloop.first %}
{% endif %}
{{ cocktail.nome_cocktail }}
{{ cocktail.nome_cocktail }}

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

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