{% extends "base.html" %} {% load static %} {% block title %}{{ product.name }}{% endblock %} {% block content %}
{% if product.image %}
{{ product.name }}
{% endif %}

{{ product.name }}

{% if product.status == 'active' %} Active {% else %} Inactive {% endif %}

{{ product.get_formatted_price }}

{% if product.description %}

Description

{{ product.description|linebreaksbr }}

{% endif %} {% if product.status == 'active' %}
{% if purchase_options.can_purchase %} {% if purchase_options.has_customer %}
{% else %}

You need to set up a Stripe customer record before making a purchase.

Set Up Billing
{% endif %} {% else %}

You need to log in to purchase this product.

Log In
{% endif %}
{% else %}
This product is currently unavailable for purchase.
{% endif %}
{% if product.metadata %}

Product Details

{% for key, value in product.metadata.items %} {% endfor %}
{{ key|title }} {{ value }}
{% endif %} {% if request.user.is_staff %}

Technical Information (Staff Only)

{% if product.stripe_product_id %} {% endif %}
Product ID {{ product.id }}
Created {{ product.created }}
Last Updated {{ product.updated }}
Stripe Product ID {{ product.stripe_product_id }}
{% endif %}
{% endblock %}