{% extends "base.html" %} {% load static %} {% load markdown_extras %} {% block title %} Joanna Lemon Learning - Resource List {% endblock title %} {% block content %} {# admin block #} {% 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 featured_resources %}
Featured resources
{% for resource in featured_resources %} {% if featured_resources|length == 1 %}
{% elif featured_resources|length == 2 %}
{% else %}
{% endif %}
{{ resource.thumbnail_filename }}
{{ resource.name }}
{% if resource.main_resource_category_name == "English as a Foreign Language (EFL)" %} EFL {% else %} {{ resource.main_resource_category_name }} {% endif %}
{{ 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 %}
{% if request.user.is_authenticated and request.user.is_staff %}
{% endfor %} {% else %}

There are no featured resources

{% endif %}
{# standard resources #}
{% if resource_list %}
Standard resources
{% for resource in resource_list %} {#
#}
{{ resource.thumbnail_filename }}
{{ resource.name }}
{% if resource.main_resource_category_name == "English as a Foreign Language (EFL)" %} EFL {% else %} {{ resource.main_resource_category_name }} {% endif %}
{{ resource.age_range }}
{% if resource.card_description %}

{{ resource.card_description | markdown | safe }}

{% else %}

{{ resource.description | markdown | safe }}

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

There are no resources

{% endif %}
{% endblock content %}