{% extends 'base.html' %} {% load static %} {% block title %}{{ title }} - Rapha-Bethel BNPS{% endblock %} {% block content %}

{{ title }}

Back
Invoice Details
{% csrf_token %} {% if form.errors %}
Please correct the errors below.
{% endif %} {% if not object %}
{{ form.student }} {% if form.student.errors %}
{{ form.student.errors }}
{% endif %}
{% else %}
Editing invoice for: {{ object.student.get_full_name }}
{% endif %}
{{ form.academic_year }}
{{ form.term }}
{% if not object %}
{{ form.subtotal }}
{% endif %}
{{ form.due_date }} {% if form.due_date.errors %}
{{ form.due_date.errors }}
{% endif %}
{{ form.discount }}
{{ form.discount_reason }}
{% if object %}
{{ form.status }}
{% endif %}
{{ form.notes }}
{{ form.notes_fr }}
Cancel
{% block extra_js %} {% endblock %} {% endblock %}