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

21 lines
426 B
HTML

<h1>{{ object.name }}</h1>
(description to be added here)
<ul>
{% for tf in timeframes %}
<li><a href="{% url 'product-order-tf' object.slug tf.slug %}">Buy
{{ object.name }}
for {{ tf }}</a>
</li>
{% endfor %}
{% if not timeframes %}
{% if has_one_time_price %}
<li><a href="{% url 'product-order-onetime' object.slug %}">Buy
{{ object.name }}</a>
</li>
{% endif %}
{% endif %}
</ul>