{% extends 'electionnight/base.html' %} {% load tz %} {% block title %}
LIVE results last updated {{ now|timezone:"America/New_York"|date:"N j, Y P" }} EDT {% if governor_elections %} Governor {% for election in governor_elections %} {% if election.votes_table %} {% include 'electionnight/results-table.html' %} {% endif %} {% endfor %} {% endif %} {% if senate_elections %} U.S. Senate {% for election in senate_elections %} {% if election.votes_table %} {% include 'electionnight/results-table.html' %} {% endif %} {% endfor %} {% endif %} {% if house_elections %} U.S. House {% for district, elections in house_elections.items %} {{ district }} {% for election in elections %} {% if election.votes_table %} {% include 'electionnight/results-table.html' %} {% endif %} {% endfor %} {% endfor %} {% endif %} {%endblock%} {% block relative_foot %} {% endblock %} {% block footer_links %} 2018 Elections {% for state in nav.states %} {{state.name}} {% endfor %} {% endblock %} {% block utag %} {% endblock %}