{% extends "base.html" %} {% load static %} {% block title %} Joanna Lemon Learning - Resource List {% endblock title %} {% block content %} {% if request.user.is_authenticated and request.user.is_staff %}
Admin bar

Only you will see this bar - normal users will not see it. It allows us to include buttons for adding new resources, etc.

Add a new resource
Logged in as {{ request.user.email }}
{% csrf_token %}
{% endif %}
Featured resources
{% if resource_list %}
{% for resource in resource_list %}
{{ resource.thumbnail_filename }}
{{ resource.name }}
{{ resource.main_resource_category_name }}
{{ resource.age_range }}

{{ resource.description }}

Details
{% endfor %}
{% else %}

There are no resources

{% endif %}
{% endblock content %}