{% extends "base.html" %} {% load static from staticfiles %} {% load saas_tags %} {% block content %}
{% csrf_token %} {% for plan in plan_list %}
{% if plan.created_at|date_in_future %}

Avalaible soon!

{% endif %}

{{plan.title}}

{% if plan.period_amount > 0 %}

{{plan.period_amount|humanize_money:plan.unit}} {{plan.interval|humanize_period}}

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

{{plan.transaction_fee|percentage}} + 30c per transaction

{% endif %}

{{plan.description}}

{% empty %} No Plans yet {% endfor %}
{% endblock %} {% block bodyscripts %} {% endblock %}