{% extends 'base.html' %} {% load static %} {% block content %}
{% if messages %} {% endif %}
{% csrf_token %}
{{ form.category }}
{{ form.size }}
{% if quantity and price %}

{{ form.admissionNumber }}
{{ form.studentName }}
{% endif %}
{% if issued_current_item %}

Our Lady's School

Upper Section
Receipt

Category: {{ issued_current_item.category }}

Size: {{ issued_current_item.size }}

Student Name: {{ issued_current_item.student_name }}

Admission Number: {{ issued_current_item.admission_number }}

Quantity: {{ issued_current_item.quantity }}

Price: {{ issued_current_item.price }}

Date Time: {{ issued_current_item.date_time }}

Bill Number: {{ issued_current_item.bill_number }}

{% endif %}
{% endblock %}