uncloud/uncloud_v3/app/templates/app/product_detail.html

12 lines
231 B
HTML
Raw Normal View History

<h1>{{ object.name }}</h1>
2022-01-15 23:31:59 +00:00
(description to be added here)
<ul>
{% for tf in timeframes %}
2022-01-15 23:31:59 +00:00
<li><a href="{% url 'product-order-tf' object.slug tf.slug %}">Buy
{{ object.name }}
for {{ tf }}</a>
{% endfor %}
</ul>