{% extends "bo/bo_layout.html" %} {% block title %} Profile Index{% endblock %} {% block content %} {% set query_str = '?search_text=' + search_text if search_text else '' %}

{{district or ''}}

{% if in_filter: %} {% if in_filter|int ==0 %} Incompleted Profile List (Total : {{total_count}}) {% endif %} {% if in_filter|int ==1%} Profile Updated List (Total : {{total_count}}) {% endif %} {% if in_filter|int ==2%} Total Ratified Member (Total : {{total_count}}) {% endif %} {% if in_filter|int ==3%} Ratified - Profile Updated (Total : {{total_count}}) {% endif %} {% if in_filter|int ==4%} Ratified - Profile Not Updated List (Total : {{total_count}}) {% endif %} {% else %} Total Member (Total : {{total_count}}) {% endif %}

{%if page==1:%} {% else %} {%endif%} {% if page < 6: %} {% if no_of_page < 6: %} {% for i in range(1,no_of_page+1) %} {% endfor %} {% else %} {% for i in range(1,7) %} {% endfor %} {% endif %} {% elif page >= 6: %} {% if page == no_of_page: %} {% for i in range(page-6,no_of_page+1) %} {% endfor %} {% elif page == no_of_page-1: %} {% for i in range(page-5,no_of_page+1) %} {% endfor %} {% elif page == no_of_page-2: %} {% for i in range(page-4,no_of_page+1) %} {% endfor %} {% else %} {% for i in range(page-3,page+4) %} {% endfor %} {% endif %} {% endif %} {%set data1 = no_of_page |int%} {% if page==data1:%} {% else %} {% endif %}
{% if datas %} {% for i in datas%} {% endfor %} {% else %}

Record not found

{% endif %}
Action Membership No Profile Image Name Email Mobile City Last updated at
{% if i.profile_updated_at== None %} {% endif %} {{i.membership_no}} {% if i.attach_path %} {% else %} image {% endif %} {{i.prefix or ''}}{{i.full_name or ''}} {{i.email or ''}} {{i.mobile or ""}} {{i.city or ''}} {% if i.profile_updated_at %}{{i.profile_updated_at.strftime('%d-%B-%Y %H:%M:%S') or ''}}{% endif %}
{% endblock %} {% block script %} {% endblock %}