{% extends "_layout_base.html" %} {% block title %}Prenotazione lotto {{ super() }}{% endblock %} {% block h1 %} {% if prenotazione_esistente %} Aggiungi alla tua prenotazione {% else %} Nuova prenotazione {% endif %} {% endblock %} {% block content %}

{{ lotto.prodotto.nome }}

(cod. lotto {{ lotto.id }})

Disponibile da: {{ lotto.get_date() }}

Prodotto da: {{ lotto.prodotto.produttore.nome }}

Q.tà totale lotto: {{ lotto.qta_lotto }} {{ lotto.qta_unita_misura }}

Q.tà disponibile: {{ lotto.get_qta_disponibile() }} {{ lotto.qta_unita_misura }}

Prezzo: {{ lotto.get_prezzo_str() }}

{% if prenotazione_esistente %}
Q.tà già prenotata: {{ prenotazione_esistente.qta }} {{ lotto.qta_unita_misura }}
Prezzo totale: {{ prenotazione_esistente.get_prezzo_totale_str() }}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}