Membership Categories
{% for category in membership_categories %}
{{ category.name }}
K{{ category.fee }} per year
{{ category.description }}
{% endfor %}
{% if user.is_authenticated %}
{% if membership %}
{% if membership.is_active %}
View My Membership
{% elif membership.membership_status == 'pending' %}
View Application Status
{% elif membership.membership_status == 'expired' %}
Renew Membership
{% elif membership.membership_status == 'rejected' %}
Submit New Application
{% endif %}
{% else %}
Apply for Membership
{% endif %}
{% else %}
Login to Apply
Don't have an account?
Register here to start your application.
{% endif %}
{% if user.is_authenticated and not membership %}
Application Process
- 1. Complete membership application form
- 2. Upload required documents (Profile Picture, CV, Certificates)
- 3. Submit payment proof
- 4. Wait for admin verification
{% endif %}
{% if not user.is_authenticated %}
How to Join
- 1. Create an account or login
- 2. Fill out the membership application
- 3. Upload required documents
- 4. Make payment and upload proof
- 5. Wait for admin verification
{% endif %}