{% extends 'backoffice/base.html' %} {% block title %}Fundi List{% endblock %} {% block content %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}

FUNDIS (Contractors) LIST

Add Fundi
{% if page_obj %}
{% for fundi in page_obj %} {% endfor %}
Fundi Name Fundi Contact Created On Updated On Actions
{{ fundi.fundi }} {{ fundi.fundi_details }} {{ fundi.created_at|date:"d/m/Y" }} {{ fundi.updated_at|date:"d/m/Y" }}
{% for fundi in page_obj %} {% endfor %}
{% else %}

No fundis found.

{% endif %}
{% endblock %}