{% extends "base.html" %} {% block title %}Legislator Profiles{% endblock %} {% block body %}

Legislator profiles

Full issue taxonomy · search any current legislator

{% if q %}

Matching legislators

{{ result_count }} result{{ "" if result_count == 1 else "s" }}
{% if matches %}
    {% for option in matches %}
  1. {{ option.display_name }} {{ option.state or "US" }}{% if option.party %} · {{ option.party }}{% endif %}{% if option.chamber %} · {{ option.chamber }}{% endif %}
  2. {% endfor %}
{% else %}

No legislators matched this search.

{% endif %}
{% endif %} {% if profile %}
{{ profile.legislator.display_name.split(',')[0][:1] }}{{ profile.legislator.display_name.split(',')[-1].strip()[:1] }}

{{ profile.legislator.display_name }} {{ profile.legislator.chamber or "LEG" }}

{{ profile.legislator.state or "US" }} · {{ profile.legislator.party or "Unaffiliated" }}{% if profile.serving_since %} · Serving since {{ profile.serving_since }}{% endif %}

Overall avg {{ profile.overall_score|round(0) if profile.overall_score is not none else "—" }} / 100
{% if profile.top_topics or profile.bottom_topics %}

{{ selected_topic or "Topic" }} — score history

{{ history_svg | safe }}
{% if history_series %}
{% for item in history_series %}
{{ item.label }} {% if item.party %}{{ item.party }}{% endif %}{% if item.party and item.state %} · {% endif %}{% if item.state %}{{ item.state }}{% endif %}
{% endfor %}
{% endif %}
{% else %}

No issue scores are available for this legislator yet.

{% endif %}
{% endif %}
{% endblock %}