{% extends "base.html" %} {% block title %} Joanna Lemon Resources - Resource List {% endblock title %} {% block content %}
{% if request.user.is_authenticated %}
Add a new resource
Logged in as {{ request.user.email }}
{% csrf_token %}
{% endif %}
{% if resource_list %} {% for resource in resource_list %}

{{ resource.name }}

{{ resource.thumbnail_filename }}
{{ resource.name }}

Some quick example text to build on the card title and make up the bulk of the card's content.

More...
Main category: {{ resource.main_resource_category_name }}
{% if resource.additional_resource_category_name %}
Additional category: {{ resource.additional_resource_category_name }}
{% endif %}
{# {% for img in resource.thumbnail_urls %}#} {# {{ resource.thumbnail_filename }}#} {# {% endfor %}#} {{ resource.thumbnail_filename }}
Click to download the resource
{% endfor %} {% else %}

There are no resources

{% endif %}
{% endblock content %}