{% extends "base/base.html" %} {% if stripe_enabled %} {% load stripe_tags %} {% endif %} {% block title %}Stripe Products{% endblock %} {% block content %}

Stripe Products

{% if products %}
{% for product in products %}

{{ product|get_stripe_product_name }}

{{ product|get_stripe_product_status|title }}

{% if product.prices.data %}
{% for price in product.prices.data %}

{{ price|format_stripe_price }} {% if price.recurring %} / {{ price.recurring.interval }} {% endif %}

{% endfor %}
{% endif %}
{% endfor %}
{% else %}
No products found in Stripe.
{% endif %}
{% endblock %}