{% extends 'base.html' %} {% block title %} Аккаунт | вход {% endblock %} {% block styles %} {% endblock %} {% block content %}

Мои заказы

{% if orders %} {% for order in orders %}
{{ order.create_time }}

{{ order.name }}

{{ order.description }}

{% endfor %} {% else %}

Пока тут нет заказов. Создайте свой первый заказ тут!

{% endif %} {% endblock %}