{% extends "bo/bo_layout.html" %} {% block title %}Profile index{% endblock %} {% block content %}

Profile List (Total : {{data|length}})

{% if data %} {% for i in data %} {% endfor %} {% else %}

Record not found

{% endif %}
S.no Action Profile Image Name Email Mobile City Last updated at
{{loop.index}} {% 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') or ''}}{% endif %}
{% endblock %} {% block script %} {% endblock %}