{% load i18n %} {% if legislators|length > 0 %} {% for leg in legislators %} {% endfor %}
{% trans "Name" %} {% trans "District" %} {% trans "Party" %} {% trans "Chamber" %}
{{ leg.first_name }} {{ leg.last_name }} {{ leg.district }} {{ leg.party }} {{ leg.chamber_name }}
{% elif abbr %}
{% trans "Sorry, no legislators found for this location." %}
{% else %}
{% trans "Oh no! We can't locate any U.S. Legislators for that location. Double check you gave a location in the United States." %}
{% endif %}