{% extends 'base.html' %}{% load static %} {% block title %}Debug — Unity Nation{% endblock %} {% block content %}

Debug: Product Data

{% if product %}
FieldValue
ID{{ product.id }}
Name{{ product.name }}
Price${{ product.price }}
Merchant{{ product.merchant.business_name }}
{% else %}

No product data passed to this debug view.

{% endif %}
{% endblock %}