{% extends 'base.html' %} {% block content %}

{% block title %} {{ type|capitalize + 's' }} {% endblock %}

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eget viverra magna. Nam in ante ultricies purus feugiat vestibulum et ac erat. Donec in sagittis ante. Maecenas non mauris et eros commodo fringilla. Integer accumsan ullamcorper diam, non rhoncus tellus molestie ut. Maecenas finibus pretium dolor ac sagittis.

{% if practices_filter %}
Practices
{% endif %} {% if year_filter %}
Year
    {% for year in year_filter %}
  • {{ year }}
  • {% endfor %}
    {% for year in year_filter %}
  • {{ year }}
  • {% endfor %}
{% endif %}
{% if languages_filter %}
Scripting languages
{% endif %} {% if licenses_filter %}
License
    {% for license in licenses_filter %}
  • {{ license }}
  • {% endfor %}
    {% for license in licenses_filter %}
  • {{ license }}
  • {% endfor %}
{% endif %}
{% for resource in resources %}
{% if resource['type'] == 'tool' %}

{{ resource['name'] }}

{% elif resource['type'] == 'practice' %}

{{ resource['name'] }}

{% elif resource['type'] == 'book' %}

{{ resource['name'] }}

{% endif %}

{{ resource['description']|truncate(100) }}

{% if current_user.is_authenticated %} {% if resource['type'] == 'tool' %} Edit {% elif resource['type'] == 'practice' %} Edit {% elif resource['type'] == 'book' %} Edit {% endif %} {% endif %}
{% endfor %}
{% endblock %}