{% extends 'base.html' %} {% block content %}

Welcome to the Plant Price Tracker!

{% if use_placeholder %} {% for i in range(6) %}
Placeholder Plant {{ i+1 }}
Placeholder Plant {{ i+1 }}

No real submissions yet — submit a plant to see it here.

{% endfor %} {% else %} {% for sub in submissions %}
{{ sub.common_name }}
{{ sub.common_name }}

${{ '%.2f'|format(sub.price) }}
Source: {{ sub.source }}
Date: {{ sub.timestamp.strftime('%Y-%m-%d') }}

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