{% extends 'store/base.html' %} {% block title %}Update sale transaction{% endblock %} {% load crispy_forms_tags %} {% block content %}

Create or Update Sale

{% csrf_token %} {{ form.non_field_errors }}
{{ form.item.label_tag }} {{ form.item }} {{ form.item.errors }}
{{ form.customer_name.label_tag }} {{ form.customer_name }} {{ form.customer_name.errors }}
{{ form.payment_method.label_tag }} {{ form.payment_method }} {{ form.payment_method.errors }}
{{ form.quantity.label_tag }} {{ form.quantity }} {{ form.quantity.errors }}
{{ form.amount_received.label_tag }} {{ form.amount_received }} {{ form.amount_received.errors }}
{{ form.price.label_tag }} {{ form.price }} {{ form.price.errors }}
{{ form.total_value.label_tag }} {{ form.total_value }} {{ form.total_value.errors }}
{{ form.balance.label_tag }} {{ form.balance }} {{ form.balance.errors }}
{% endblock %}