{% extends "base.html" %} {% load static %} {% block title %}{{ product.name }} · {{ project_name }}{% endblock %} {% block content %}
Volver al catálogo
{{ product.category.name }}

{{ product.name }}

{{ product.short_description }}

Desde ${{ product.price_from }}
{{ product.description|linebreaks }}
{% if related_products %}

También puede interesarte

{% for product in related_products %} {% include "core/partials/product_card.html" with product=product %} {% endfor %}
{% endif %}
{% endblock %}