{% extends "base.html" %} {% block title %}{{ _('Pricing') }}{% endblock %} {% block content %}

{{ _('Simple, transparent pricing') }}

{{ _('Upgrade anytime. Cancel anytime.') }}

{% for plan in plans %}
{% if current_plan and current_plan.id == plan.id %}
{{ _('Current plan') }}
{% endif %}
{{ plan.name }}
{% if plan.price_monthly_cents == 0 %} {{ _('Free') }} {% else %} ${{ "%.0f"|format(plan.price_monthly_cents / 100) }} {{ _('/mo') }} {% endif %}
  • {{ _('%(n)s active listings', n=plan.limit('active_listings') or '∞') }}
  • {{ _('%(n)s-day listing life', n=plan.limit('listing_life_days')) }}
  • {{ _('%(n)s photos/listing', n=plan.limit('images_per_listing')) }}
  • {% if plan.limit('ad_free') %}
  • {{ _('Ad-free browsing') }}
  • {% endif %} {% if plan.limit('verified_badge') %}
  • {{ _('Verified badge') }}
  • {% endif %} {% if plan.limit('storefront') %}
  • {{ _('Storefront page') }}
  • {% endif %} {% if plan.limit('scheduled_posting') %}
  • {{ _('Scheduled posting') }}
  • {% endif %} {% if plan.limit('bulk_csv') %}
  • {{ _('Bulk CSV upload') }}
  • {% endif %} {% if plan.limit('priority_support') %}
  • {{ _('Priority support') }}
  • {% endif %}
{% if plan.slug == 'free' %} {% if not current_user.is_authenticated %} {{ _('Get started') }} {% else %} {{ _('Your plan') }} {% endif %} {% elif current_plan and current_plan.id == plan.id %} {{ _('Manage') }} {% elif stripe_enabled %} {{ _('Upgrade') }} {% else %} {{ _('Coming soon') }} {% endif %}
{% endfor %}
{% endblock %}