{% extends 'Bootstrap.html' %} {% block content %} {% include 'siparis_nawbar_bst.html' %}

📦 Tilaukseni

{% if no_orders %}
🚨 Henüz siparişiniz bulunmamaktadır.
{% else %}
{% for tarih, siparis_list in grouped_siparisler.items %} {% with tarih_str=tarih|date:"Ymd" %}

{% for siparis in siparis_list %} {% for detay in siparis.detaylar.all %} {% endfor %} {% endfor %}
🍽 🔢 kpl 💲 hinta
{{ detay.resept.resept_adi }} {{ detay.adet }} {{ detay.fiyat|floatformat:2 }} €
{% endwith %} {% endfor %}
{% endif %}
{% endblock %}