{% if m.current_chamber %}
{{ "Sen." if m.current_chamber == "senate" else "Rep." }}
{% endif %}
{% if m.current_state %}{{ m.current_state }}{% endif %}
{% if m.current_party %} · {{ m.current_party }}{% endif %}
{% if not m.is_current %} · former{% endif %}
{% endfor %}
{% else %}
No Members match “{{ query }}”.
{% endif %}
{% endif %}
{% if include_bills %}
Bills ({{ bill_hits|length }})
{% if bill_hits %}
{% for b in bill_hits %}
{% include "bills/_bill_card.html" %}
{% endfor %}
{% else %}
No Bills match “{{ query }}”.
{% endif %}
{% endif %}
{% if include_proceedings %}
Proceedings ({{ total }})
{# Proceeding-only filters live here, not in the global header: date
range and Congressional-Record section don't apply to Members or
Bills. Submitting re-runs the federated search with the current
entity toggles preserved. #}
{% if total == 0 %}
No proceedings match “{{ query }}”.
{% else %}
page {{ page }}.
{% for entry in results %}
{% include "_result_card.html" %}
{% endfor %}
{% if has_prev or has_next %}
{% endif %}
{% endif %}
{% endif %}
{% endif %}