{% load markdownify %}
{% load nomnom_filters %}
Dear {{ member.preferred_name }};
{% if message %}
{{ message }}
{% endif %}
Here are your {{ election.name }} nominations, as of {{ report_date }}.

{% for category, nominations in nominations %}
Category: {{ category.name | markdownify | strip_html_tags }}
{% for nomination in nominations %}
 - {{ nomination.pretty_fields }}
{% empty %}
You have no nominations in {{ category }}
{% endfor %}
{% empty %}
You don't have any nominations.
{% endfor %}

If you want to change them, you can find them at {{ ballot_url }}
