Small api logic changes, small order changes

This commit is contained in:
2022-09-29 00:32:18 +03:00
parent 19b246ec06
commit 6f3beeec09
8 changed files with 80 additions and 20 deletions

View File

@@ -18,7 +18,7 @@
{% for order in orders %}
<div class="order-wrapper">
<span class="order-pub-date">{{ order.create_time }}</span>
<h3>{{ order.name }}</h3>
<h3><a href="{% url 'order-view' order.id %}">{{ order.name }}</a></h3>
<p>{{ order.description }}</p>
</div>
{% endfor %}