{% extends "billy/base.html" %}
{% load humanize %}
{% block title %}
{{ bill.state|upper }} {{ bill.bill_id }}
{% endblock %}
{% block content %}
{{bill.state|upper}} {{bill.bill_id}}
Motion | Chamber | Date | Result | Yes Votes | No Votes | Other Votes |
---|---|---|---|---|---|---|
{{vote.motion}} | {{vote.chamber}} | {{vote.date|naturalday}} | {{vote.yes_count}}-{{vote.no_count}}-{{vote.other_count}} [{{vote.passed|yesno:"passed,failed"}}] | {% for v in vote.yes_votes %}{{v.name}},{%endfor%} | {% for v in vote.no_votes %}{{v.name}},{%endfor%} | {% for v in vote.other_votes %}{{v.name}},{%endfor%} |
| ||||||