{% extends 'header.html' %} {% load static %} {% block content %}
{% if city %}
Meeting Details of {{ state }} state, {{ district }} district and {{ city }} city
{% elif district %}
Meeting Details of {{ state }} state and {{ district }} district
{% else %}
Meeting Details of {{ state }} state
{% endif %}
{% comment %}

{% endcomment %}
{% comment %} {% endcomment %} {% for i in meeting_list %} {% comment %} {% endcomment %} {% comment %} {% endcomment %} {% endfor %}
Meeting ID Category State District City Mandal Title of Meeting Experts Present Meeting Date Meeting TimeMeeting MinutesMembers Attended Document
BSMMTN{{ i.id }} {{ i.category.name }} {{ i.state.name }} {{ i.district.name }} {{ i.city.name }} {{ i.mandal.name }} {{ i.title }} {{ i.expert }} {{ i.meeting_date }} {{ i.meeting_time }}{{ i.meeting_minutes }} {% for member in i.members_attended.all %} {{ member.name }}, {% endfor %}
{% endblock %}