Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save PauloDuarte43/d53cf6f5d24b8f8420b3530bc65fb021 to your computer and use it in GitHub Desktop.
Save PauloDuarte43/d53cf6f5d24b8f8420b3530bc65fb021 to your computer and use it in GitHub Desktop.
{% for ingredient in pizza.ingredients.all %}
{% if forloop.first %}
{{ ingredient.name }}
{% else %}
{% if forloop.last %}
e {{ ingredient.name }}
{% else %}
, {{ ingredient.name }}
{% endif %}
{% endif %}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment