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

Fee Structure

Add Fee
{% for fee in fees %}
{{ fee.name }}

{{ fee.amount }} XAF

{{ fee.get_fee_type_display }}

Frequency: {{ fee.get_payment_frequency_display }}

Academic Year: {{ fee.academic_year }}

{{ fee.is_mandatory|yesno:"Mandatory,Optional" }}
{% empty %}

No fee structures defined

{% endfor %}
{% endblock %}