{% for plot in farm.plots %}
{% if plot.state == 'empty' %}
{% if farm.is_owner %}
{% else %}
Empty plot
{% endif %}
{% elif plot.state == 'growing' %}
{{ plot.crop_icon }}
{{ plot.crop_name }}
{{ format_duration(plot.remaining_seconds) }}
{{ plot.watered_count }}/{{ plot.max_waters }} 💧
{% if plot.can_water %}
{% endif %}
{% if farm.is_owner and plot.fertilize_cost %}
{% endif %}
{% else %}
{{ plot.crop_icon }}
{{ plot.crop_name }}{% if plot.is_golden %} ✨{% endif %}
{% if plot.raided_pct %}Raided {{ plot.raided_pct }}%{% endif %}
{% if farm.is_owner %}
{% elif plot.can_steal %}
{% elif plot.steal_reason == 'stripped' %}
Already stripped
{% elif plot.steal_reason == 'cooldown' %}
Raid again in {{ format_duration(plot.steal_cooldown_seconds) }}
{% else %}
Ready
{% endif %}
{% endif %}
{% endfor %}
{% if farm.is_owner and farm.plot_count < farm.max_plots %}
{% endif %}