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

{{ object.name }}

ID {{ object.id }}
Other names {% for obj in object.other_names.all %} {{ obj.name }}{% if not forloop.last %},{% endif %} {% endfor %}

OCD Candidacies ({{ object.candidacies.count }})

{% for obj in object.candidacies.all %} {% endfor %}
Election Name Post Incumbent Status Filer ID Sources
{{ obj.election }} {{ obj.candidate_name }} {{ obj.post.label }} {{ obj.is_incumbent }} {{ obj.registration_status }} {{ obj.filer_id }}
{% endblock %}