{% extends 'board.html' %} {% load crispy_forms_tags %} {% load static %} {% load humanize %} {% load home_tags %} {% block title %} Pay {% endblock title %} {% block content %}

{% if reg.paid == False %}

Proceed to make payment for the test

DETAILS


Test Fee = ₦{{exam.test_fee|intcomma}}

{% if late_fee > 0 %} Lateness Fee = ₦{{late_fee|intcomma}}

{% else %} {% endif %} Online Processing Fee = ₦{{exam.online_fee|intcomma}}

{% elif reg.paid == True %}

You have paid for the test

{% else %}

Proceed to make payment for the test

DETAILS


Test Fee = ₦{{exam.test_fee|intcomma}}

{% if late_fee > 0 %} Lateness Fee = ₦{{late_fee|intcomma}}

{% else %} {% endif %} Online Processing Fee = ₦{{exam.online_fee|intcomma}}

{% endif %}
{% endblock content%}