{% extends "base.html" %} {% block title %} {{ chamber|capitalize }} roll {{ roll_number }} — Concord {% endblock %} {% block content %}
{{ "House" if vote.chamber == "house" else "Senate" }} roll {{ vote.roll_number }} · {{ vote.congress }}th

{{ vote.vote_question }}

Result

{{ vote.result }} {% if vote.is_party_unity %} party-unity vote {% endif %}
{% if vote.yea_count is not none %}
Yea {{ vote.yea_count }} · Nay {{ vote.nay_count }} · Present {{ vote.present_count or 0 }} · Not Voting {{ vote.not_voting_count or 0 }}
{% endif %}

Subject

{% if vote.bill_id and vote.amendment_id %}
Amendment {{ vote.amendment_id.split('-')[1]|upper }} {{ vote.amendment_id.split('-')[2] }} to {% if underlying_bill %} {{ underlying_bill.bill_type|upper }} {{ underlying_bill.bill_number }} — {{ underlying_bill.title|truncate(120) }} {% else %} {{ vote.bill_id }} (bill not indexed) {% endif %}
{% elif vote.bill_id %} {% if underlying_bill %}
{{ underlying_bill.bill_type|upper }} {{ underlying_bill.bill_number }} — {{ underlying_bill.title|truncate(120) }} {% if underlying_bill.policy_area %} · {{ underlying_bill.policy_area }}{% endif %}
{% else %}
{{ vote.bill_id }} (bill not indexed)
{% endif %} {% else %}

Procedural — no bill or amendment subject.

{% endif %}

Positions ({{ positions|length }})

{% if positions %} {% for p in positions %} {% endfor %}
Member Party State Position
{% if p.display_name %} {{ p.display_name }} {% else %} {{ p.bioguide_id }} {% endif %} {{ p.vote_party or "—" }} {{ p.vote_state or "—" }} {{ p.position }}
{% else %}

No positions recorded.

{% endif %}
{% endblock %}