{% extends "base.html" %} {% block title %}Orchid of the Day Schedule - Admin{% endblock %} {% block content %}

Orchid of the Day Scheduler

Schedule orchids to appear at midnight daily

Back to Dashboard
Current Schedule
{% if scheduled_orchids %}
{% for orchid in scheduled_orchids %} {% endfor %}
Date Orchid Display ID Country Actions
{{ orchid.scheduled_date.strftime('%m/%d/%Y') if orchid.scheduled_date }} {% if orchid.scheduled_date == today %}
Today {% elif orchid.scheduled_date == tomorrow %}
Tomorrow {% endif %}
{{ orchid.approved_genus }} {{ orchid.approved_species }} {% if orchid.approved_common_name %}
{{ orchid.approved_common_name }} {% endif %}
{{ orchid.special_display_id }} {% if orchid.approved_country %} {{ orchid.approved_country }} {% else %} Unknown {% endif %}
{% else %}
No scheduled orchids

Add orchids to the schedule to ensure consistent daily features.

{% endif %}
Available for Scheduling
{% if available_orchids %} {% for orchid in available_orchids %}
{{ orchid.approved_genus }} {{ orchid.approved_species }}
{{ orchid.special_display_id }} {% if orchid.approved_country %}
{{ orchid.approved_country }} {% endif %}
{% endfor %} {% else %}

No approved orchids available

Approve More Orchids
{% endif %}
Quick Schedule Options
{% endblock %}