{% extends 'committee/committee_layout.html' %} {% block head %} {% endblock %} {% block title %}Committee Members{% endblock %} {% block content %} {% for mesg in get_flashed_messages(category_filter=["successMsg"]) %}
×

right{{ mesg }}

{% endfor %} {% for mesg in get_flashed_messages(category_filter=["errorMsg"]) %}
×

wrong{{ mesg }}

{% endfor %}

Committee Members

{% for user in data %}
{{user.committee_name}}
{% for i in committee_members_details %} {% if i.committee_id == user.committee_id %}
{% if i.attach_file_name %} Card image cap {% else %} Card image cap {% endif %}
{{i.full_name or ''}}
{{i.role or ''}}
{% endif %} {% endfor %}
{% endfor %}
{% endblock %} {% block script %} {% endblock %}