{% extends "layouts/base.html" %} {% block content %}
Dodaj recept {% for recipe in data["recipes"] %}
  • {{recipe.recipe.name}}

    Izmeni Obrisi {% for i in recipe.ingredients %} {% endfor %}
    Sastojak Kolicina Cena
    {{ i.name }} {{ i.ammount }} {{ i.price }}
  • {% endfor %}
    {% endblock content %}