You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
356 B

{% extends "cashonly/web/base.html" %}
{% load i18n %}
{% block content %}
<h1>{% trans "Product details" %}</h1>
<table>
<tr><th>{% trans "Name" %}:</th><td>{{ product.name }}</td></tr>
<tr><th>{% trans "Price" %}:</th><td>{{ product.price }}</td></tr>
<tr><th>{% trans "Category" %}:</th><td>{{ product.category }}</td></tr>
</table>
{% endblock %}