{% extends "base.html" %} {% block title %}Active Citizen Science Projects{% endblock %} {% block content %}

Active Conservation Projects

Join ongoing research initiatives to document and protect wild orchid populations

Filter by Category
{% if projects and projects|length > 0 %} {% for project in projects %}
{{ project.title }}
{{ project.partner_organization or 'Independent Project' }}
{{ project.status.title() }}

{{ project.description[:150] }}{% if project.description|length > 150 %}...{% endif %}

{{ project.submissions_count }}
Submissions
{{ project.contributors|length }}
Contributors
{{ project.target_species|length }}
Target Species
{% if project.geographic_focus %}
Geographic Focus:
{{ project.geographic_focus }}
{% endif %} {% if project.target_species %}
Target Species:
{% for species in project.target_species[:3] %} {{ species }} {% endfor %} {% if project.target_species|length > 3 %} +{{ project.target_species|length - 3 }} more {% endif %}
{% endif %}
{{ project.start_date }} to {{ project.end_date }}
{% endfor %} {% else %}

No Active Projects

Be the first to create a citizen science project for orchid conservation!

{% endif %}
{% endblock %}