{% extends 'base.html' %} {% load humanize %} {% block title %}Registration Fees Settings{% endblock %} {% block content %}

Registration Fees Settings

Configure registration fees for different products and services

Create New Registration Fee

{% csrf_token %}
{{ form.product_type }}
{{ form.fee_name }}
{{ form.amount }}
{{ form.description }}
{{ form.is_active }}

Registration Fees

{% if registration_fees %}
{% for fee in registration_fees %} {% endfor %}
Product Type Fee Name Amount Status Created Actions
{{ fee.get_product_type_display }} {{ fee.fee_name }} KES {{ fee.amount|floatformat:2|intcomma }} {% if fee.is_active %} Active {% else %} Inactive {% endif %} {{ fee.created_at|date:"M d, Y" }}
{% csrf_token %} {% if fee.is_active %} {% else %} {% endif %}
{% else %}
⚙️

No registration fees configured

Create your first registration fee using the form above.

{% endif %}
{% endblock %}