{% extends "base.html" %} {% load static %} {% load markdown_extras %} {% 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 %}
{% if featured_resources %}
Featured resources
{% for resource in featured_resources %}
{{ resource.thumbnail_filename }}
{{ resource.name }}
{{ resource.main_resource_category_name }}
{{ resource.age_range }}
{% if request.user.is_authenticated and request.user.is_staff %}
Feature slot: {{ resource.feature_slot }}
{% endif %}
{% if resource.card_description %}

{{ resource.card_description | markdown | safe }}

{% else %}

{{ resource.description | markdown | safe }}

{% endif %} Details {% if request.user.is_authenticated and request.user.is_staff %} Edit {% endif %}
{% endfor %} {% else %}

There are no featured resources

{% endif %}
{% if resource_list %}
Standard resources
{% for resource in resource_list %}
{{ resource.thumbnail_filename }}
{{ resource.name }}
{{ resource.main_resource_category_name }}
{{ resource.age_range }}
{% if resource.card_description %}

{{ resource.card_description | markdown | safe }}

{% else %}

{{ resource.description | markdown | safe }}

{% endif %} Details {% if request.user.is_authenticated and request.user.is_staff %} Edit {% endif %}
{% endfor %}
{% else %}

There are no resources

{% endif %}
{% endblock content %}