{% extends "base.html" %} {% block content %}
| Filer ID | {{ object.filer_id }} |
|---|---|
| Sort name | {{ object.sort_name }} |
| Family name | {{ object.family_name }} |
| Given name | {{ object.given_name }} |
| Other names | {% for obj in object.other_names.all %} {{ obj }}{% if not forloop.last %},{% endif %} {% endfor %} |
| Election | Name | Post | Party | Incumbent | Status | Filer ID | Sources |
|---|---|---|---|---|---|---|---|
| {{ obj.election }} | {{ obj.candidate_name }} | {{ obj.post.label }} | {{ obj.party }} | {{ obj.is_incumbent }} | {{ obj.registration_status }} | {% for i in obj.filer_ids %} {{ i }} {% if not forloop.last %},{% endif %}{% endfor %} |
|
| Election | Name | Scraped ID | Office name |
|---|---|---|---|
| {{ obj.election }} | {{ obj.name }} | {{ obj.scraped_id }} | {{ obj.office_name }} |
| Filing ID | Committee ID | First name | Last name | Election year | Election type | Office | District | Party |
|---|---|---|---|---|---|---|---|---|
| {{ obj.filing_id }} | {{ obj.committee_id }} | {{ obj.first_name }} | {{ obj.last_name }} | {{ obj.election_year }} | {{ obj.election_type }} | {{ obj.office }} | {{ obj.district }} | {{ obj.party }} |