{% extends 'base.html' %} {% block title %}Create Receipt | FoxFitt{% endblock %} {% block content %}

Create Expense Receipt

Back
{% csrf_token %}
{{ form.date }}
{{ form.vendor_name }} Will appear as the main title on the receipt.
{{ form.payment_method }}
{{ form.description }}

Items
{{ items.management_form }}
{% for item_form in items %}
{{ item_form.id }}
{{ item_form.product_name }}
R {{ item_form.amount }}
{% if items.can_delete %}
{{ item_form.DELETE }}
{% endif %}
{% endfor %}

{% for radio in form.vat_type %}
{{ radio.tag }}
{% endfor %}
Subtotal (Excl. VAT): R 0.00
VAT (15%): R 0.00
Total: R 0.00
{% endblock %}