{% extends "billy/base.html" %} {% load url from future %} {% load billy_utiltags %} {% block title %}{{metadata.name}} committees{% endblock %} {% block content %}
{% csrf_token %} {% for chamber in chambers %}

{{chamber.name}} Committees

{% for com in chamber.committees %} {% endfor %}
Committee Members Sources Delete?
{{com.committee}} {% if com.subcommittee %} : {{com.subcommittee}} {% endif %} {% with com|key:"_id" as comm_id %}
{% url 'committee' com|level comm_id as com_url %} {% if com_url %} public | {% endif %} json {% endwith %}
    {%for m in com.members %}
  • {{ m.name }} ({{m.role}}) {% if m.leg_id %} {% url 'legislator_noslug' com|level m.leg_id as leg_url %} {% if leg_url %} public {% endif %} json {% else %} [unmatched] {% endif %}
  • {% empty %}
  • EMPTY
  • {% endfor %}
    {%for s in com.sources %}
  • {{s.url}}
  • {% endfor %}
{% endfor %}
{% endblock %}