{% extends "cciw/standard.html" %} {% load standardpage %} {% comment %} This template has a single variable 'object_list' which is a list of 'Award' objects {% endcomment %} {% block content %} {% for award in object_list %}

{{award.nice_name}}

{{ award.nice_name }} image {{award.description}}
{% if award.personal_awards.all %}

Awarded to:

{% else %}

Not awarded to anyone yet.

{% endif %}
{% endfor %} {% endblock %}