{% extends "base.html" %} {% load i18n %} {% load l10n %} {% load static %} {% load crispy_forms_tags %} {% block title %}{{ block.super }}:: Our Selection{% endblock %} {% block list_of_items %}

{% trans "gold star selection" %}

{% trans "The EU-Citizen.Science consortium has curated a selection of Gold Star citizen science resources" %} {% trans "to help you get started with designing and launching your own citizen science project or simply learn about citizen science, categorised across the project lifecycle." %} {% include "_subnavbar.html" %}
{% for group in groups %}

{{group.name}}

{% for rg in resourcesgrouped %} {% if rg.group == group %} {% include 'resource_card_one.html' with resource=rg.resource %} {% endif %} {% endfor %}
{% endfor %} {% endblock list_of_items %}