{% extends "base.html" %} {% set page_title = "Orchid Debugger Dashboard - Five Cities Orchid Society" %} {% block content %}

Orchid Debugger System

Help verify orchid identifications and improve database quality

{% if not is_debugger %}

Become an Orchid Debugger

What Debuggers Do:
  • Verify Identifications: Check orchid names and classifications for accuracy
  • Flag Mislabeled Plants: Report orchids that may be incorrectly identified
  • Improve Database Quality: Help ensure reliable information for all users
  • Earn Points & Badges: Get recognized for your contributions to the community
Requirements:
  • FCOS membership or registered account
  • Basic orchid identification knowledge
  • Commitment to accurate, helpful feedback
Earn Recognition

Get points and badges for quality contributions

{% else %}

Your Stats

{{ stats.verifications_made or 0 }}

Verifications

{{ stats.flags_submitted or 0 }}

Flags Submitted

{{ stats.total_points or 0 }}

Total Points Earned
Progress to next badge

How It Works

Verify Correct IDs

Click "Verify" if the orchid identification looks correct. Earn 1 point per verification.

Flag Problems

Click "Flag" if you think an orchid is mislabeled. Include your suggested correction.

Orchid of the Day

Flagged orchids are removed from "Orchid of the Day" eligibility until reviewed.

Earn Badges

Reach point milestones to unlock debugger badges and recognition.

Orchids Needing Verification {{ orchids|length }}

{% if orchids %}
{% for orchid in orchids %}
{% if orchid.google_drive_id %} {{ orchid.display_name }} {% else %}
{% endif %}
{{ orchid.display_name }}

Genus: {{ orchid.genus or 'Unknown' }}
Species: {{ orchid.species or 'Unknown' }}
Region: {{ orchid.region or 'Unknown' }}

{% if orchid.ai_analysis %}
AI Confidence: {{ orchid.ai_analysis.get('confidence', 'Unknown') }}
{% endif %}
{% endfor %}
{% else %}
All Caught Up!

No orchids currently need verification. Check back later!

{% endif %}
{% endif %}
{% endblock %}