{% extends "billy/base.html" %}
{% load humanize %}
{% load billy_utiltags %}
{% block content %}
{{ metadata.name }}
- Upper:
- {{report.bills.upper_bill_count}}
- Lower:
- {{report.bills.lower_bill_count}}
- Versions:
- {{versions}}
- without actions:
- {{report.bills.actionless|length}}
- without sponsors:
- {{report.bills.sponsorless|length}}
- without versions:
- {{report.bills.versionless|length}}
- without sources:
- {{report.bills.sourceless|length}}
- Updated Today:
- {{report.bills.updated_today}}%
- Updated This Month:
- {{report.bills.updated_this_month}}%
- Updated This Year:
- {{report.bills.updated_this_year}}%
Bill Types
Type | # |
{% for name, num in report.bills.bill_types|sorted_items %}
{{name}} | {{num}} |
{% endfor %}
Action Types
Type | # |
{% for name, num in report.bills.actions_per_type|sorted_items %}
{{name}} | {{num}} |
{% endfor %}
Actors
Type | # |
{% for name, num in report.bills.actions_per_actor|sorted_items %}
{{name}} | {{num}} |
{% endfor %}
Actions by Month
Type | # |
{% for name, num in report.bills.actions_per_month|sorted_items %}
{{name}} | {{num}} |
{% endfor %}
- Upper:
- {{report.legislators.upper_active_count}}
- Lower:
- {{report.legislators.lower_active_count}}
- Inactive:
- {{report.legislators.inactive_count}}
- with PVS id:
- {{report.legislators.votesmart_id}}
- with TransparencyData id:
- {{report.legislators.transparencydata_id}}
- without sources:
- {{report.legislators.sourceless|length}}
- Updated Today:
- {{report.legislators.updated_today}}%
- Updated This Month:
- {{report.legislators.updated_this_month}}%
- Updated This Year:
- {{report.legislators.updated_this_year}}%
- Upper:
- {{report.committees.upper_count}}
- Lower:
- {{report.committees.lower_count}}
- Joint:
- {{report.committees.joint_count}}
- Empty:
- {{report.committees.empty_count}}
- without sources:
- {{report.committees.sourceless|length}}
- Updated Today:
- {{report.committees.updated_today}}%
- Updated This Month:
- {{report.committees.updated_this_month}}%
- Updated This Year:
- {{report.committees.updated_this_year}}%
{% endblock %}