{% extends "base.html" %} {% block content %}
{% if plan_list %} {% for plan in plan_list %}
{% if plan.created_at|date_in_future %}

Avalaible soon!

{% endif %}

{{plan.title}}

{% if plan.period_price.amount > 0 %}

{{plan.period_price|humanize_money}} {{plan.interval|humanize_period}}

{% endif %} {% if plan.setup_amount > 0 %} one-time: {{plan.setup_price|humanize_money}} {% endif %} {% if plan.transaction_fee > 0 %}

(+Stripe per transaction costs)

{% endif %}

{{plan.description}}

{% endfor %} {% else %} No Plans yet {% endif %}
{% endblock %}