{% extends "base.html" %} {% block title %}Submit Contest Entry - Monthly Show & Tell{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Submit Your Orchid Entry

{{ period.month_name }} {{ period.year }} Contest

Deadline: {{ period.deadline_str }}

Contest Rules & Guidelines
  • Submit up to 5 currently blooming orchids per month
  • Each entry must include full orchid name and caption
  • Photos must be your own, taken within the last 30 days
  • Choose the correct category: Species, Hybrids, Cattleyas, or Intergenerics
  • Entries close on the 2nd Thursday at 7:00 PM PST
  • All submissions require admin approval before voting
{% if submissions %}
Your Current Submissions ({{ submissions|length }}/5)
{% for submission in submissions %}
{{ submission.orchid_name }}
{{ submission.orchid_name }}
{{ submission.category }} • {{ submission.caption[:50] }}{% if submission.caption|length > 50 %}...{% endif %}
{{ submission.status.title() }}
{% endfor %}
{% endif %} {% if remaining > 0 %}

Upload Orchid Photo

Click to upload or drag and drop

PNG, JPG up to 10MB

Orchid Information

{% for category in categories %}
{% if category == 'Species' %}🌸 {% elif category == 'Hybrids' %}🌺 {% elif category == 'Cattleyas' %}🏵️ {% elif category == 'Intergenerics' %}🌷 {% endif %}
{{ category }}
{% if category == 'Species' %}Natural species {% elif category == 'Hybrids' %}Bred varieties {% elif category == 'Cattleyas' %}Cattleya alliance {% elif category == 'Intergenerics' %}Multi-genus crosses {% endif %}
{% endfor %}

Caption & Story

0/500 characters
Back to Contest

Remaining submissions: {{ remaining }}

{% else %}

All Entries Submitted!

You've reached the maximum of 5 entries for this month.

View Contest
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}