{% extends "billy/base.html" %} {% load url from future %} {% load billy_utiltags %} {% block title %} {{meta.name}} bad vote list {% endblock title %} {% block content %}

{{meta.name}} bad vote counts

{% for vote in votes %} {% endfor %}
Chamber Session bill_id vote_id bad votes
{{vote.chamber}} {{vote.bill.session}} {{vote.bill_id}} {{vote|private:"id"}} {% if vote.yes_count != vote.yes_votes|length %} yes {% endif %} {% if vote.no_count != vote.no_votes|length %} no {% endif %} {% if vote.other_count != vote.other_votes|length %} other {% endif %}

All {{vote_ids|length}} IDs:

{% endblock %}