{% extends "base.html" %} {% load static %} {% block title %}Product Management - Admin Dashboard{% endblock %} {% block content %}

Product Management

Manage your Stripe products

Stripe Product Management

View and manage your products synced with Stripe

{% if not stripe_enabled %}

Stripe integration is not enabled. To enable Stripe, set STRIPE_ENABLED=True in your environment.

{% elif not stripe_available %}

Stripe library is not available. Please install the required dependencies.

{% elif error %}

Error loading products: {{ error }}

{% else %}
{% if products %} {% for product in products %} {% endfor %} {% else %} {% endif %}
Name Price Status Created Stripe ID Actions
{% if product.image %}
{{ product.name }}
{% endif %}

{{ product.name }}

{{ product.description|truncatechars:50 }}

{{ product.get_formatted_price }} {% if product.status == 'active' %} Active {% else %} Inactive {% endif %} {{ product.created|date:"M d, Y" }} {% if product.stripe_product_id %} {{ product.stripe_product_id }} {% else %} Not synced {% endif %}
View {% if product.stripe_product_id %} Stripe {% endif %}

No products found. Create products in your Stripe dashboard.

{% if products.has_other_pages %} {% endif %} {% endif %}
{% block extra_js %} {% endblock %} {% endblock %}