{% extends "base.html" %} {% block title %}{{ product.name }} — Django-Dolt Demo{% endblock %} {% block nav_inventory %}class="active"{% endblock %} {% block content %}

Details

{% if product.description %} {% endif %}
SKU{{ product.sku }}
Category{{ product.category.name }}
Price${{ product.price }}
In Stock{{ product.quantity_in_stock }} units
Description{{ product.description }}

Comments

Auto-committed via @dolt_autocommit

{% if user.is_authenticated %}
{% csrf_token %}
{% else %}

Log in to comment

{% endif %} {% if comments %} {% for comment in comments %}
{{ comment.author }} {{ comment.created_at|date:"M d, H:i" }}

{{ comment.body }}

{% endfor %} {% else %}

No comments yet.

{% endif %}
{% endblock %}