{% extends 'base.html' %} {% load markdown_extras %} {% block content %}
{% for tn_url, tn_filename in resource.thumbnails %}
{{ tn_filename }}
{% endfor %}

{{ resource.name }}

{{ resource.main_resource_category }}

{{ resource.age_range }}

{% if resource.pdf_filenames|length > 1 %}

Contains {{ resource.pdf_filenames|length }} PDF files.

{% else %}

Contains {{ resource.pdf_filenames|length }} PDF file.

{% endif %}

£{{ resource.price|floatformat:2 }} (or 1 credit)


Product summary

{{resource.card_description}}

{% if resource.in_cart %}
{% else %}
{% endif %}
{% for snapshot_filename, snapshot_urls in resource.snapshot_urls.items %} {% for snapshot_url in snapshot_urls %}
{{ snapshot_name }}
{% endfor %} {% endfor %}

Product detail

{{ resource.description | markdown | safe }}
{% endblock content %}