{% extends "base.html" %} {% block content %}

{{ object.name }}

ID {{ object.id }}
Parent {{ object.parent }}
Type {{ object.committee_type }}
Ballot measures {% for obj in object.ballot_measure_options_supported.all %} {{ obj }}{% if not forloop.last %},{% endif %} {% endfor %}
Other names {% for obj in object.other_names.all %} {{ obj }}{% if not forloop.last %},{% endif %} {% endfor %}
Identifiers {% for obj in object.identifiers.all %} {{ obj }}{% if not forloop.last %},{% endif %} {% endfor %}
Sources {% for obj in object.sources.all %} {{ forloop.counter }}{% if not forloop.last %},{% endif %} {% endfor %}
CAL-ACCESS Filer ID {{ object.calaccess_filer_id.identifier }}
CAL-ACCESS URL {{ object.calaccess_filer_url|urlize }}

Committee statuses ({{ object.statuses.count }})

{% for obj in object.statuses.all %} {% endfor %}
Classification Note Start End
{{ obj.classification }} {{ obj.note }} {{ obj.start_date }} {{ obj.end_date }}

Committee designations ({{ object.statuses.count }})

{% for obj in object.candidacy_designations.all %} {% endfor %}
Candidacy Designation
{{ obj.candidacy }} {{ obj.designation }}

Filings ({{ object.filings.count }})

{% for obj in object.filing_proxies.all %} {% endfor %}
ID CAL-ACCESS ID Classification Start End Recipient Actions
{{ obj.id }} {{ obj.calaccess_filing_id.identifier }} {{ obj.classification }} {{ obj.coverage_start_date|date:"Y-m-d" }} {{ obj.coverage_end_date|date:"Y-m-d" }} {{ obj.recipient }} {{ obj.actions.count }}
{% endblock %}