<<<<<<< HEAD {% extends "shop/base.html" %} {% load i18n %} {% block title %}{% trans "My Orders" %} - Fursuit Shop{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% trans "My Orders" %}

{% trans "Continue Shopping" %}
{% if orders %}
{% for order in orders %}
{% trans "Order" %} #{{ order.id }}
{{ order.get_status_display }}
{{ order.created_at|date:"d.m.Y" }}
{% trans "Order Items" %}
{% for product in order.products.all %}
{% if product.image %} {{ product.name }} {% endif %}
{{ product.name }} {% if product.product_type == 'fursuit' %} {% trans "Fursuit" %} {% else %} {% trans "Printed Item" %} {% endif %}
{% endfor %}
{% trans "Payment" %}

{% if order.payment_method == 'paypal' %} PayPal {% elif order.payment_method == 'credit_card' %} {% trans "Credit Card" %} {% else %} {% trans "Bank Transfer" %} {% endif %}

{{ order.total_price }} €

{% for update in order.progress_updates.all %}
{{ update.title }}
{{ update.created_at|date:"d.m.Y H:i" }}

{{ update.description }}

{% if update.image %} {% trans 'Progress Image' %} {% endif %}
{% endfor %}
{% endfor %}
{% else %}

{% trans "No orders yet" %}

{% trans "You haven't placed any orders yet." %}

{% trans "Start Shopping" %}
{% endif %}
======= {% extends "shop/base.html" %} {% load i18n %} {% block title %}{% trans "My Orders" %} - Fursuit Shop{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% trans "My Orders" %}

{% trans "Continue Shopping" %}
{% if orders %}
{% for order in orders %}
{% trans "Order" %} #{{ order.id }}
{{ order.get_status_display }}
{{ order.created_at|date:"d.m.Y" }}
{% trans "Order Items" %}
{% for product in order.products.all %}
{% if product.image %} {{ product.name }} {% endif %}
{{ product.name }} {% if product.product_type == 'fursuit' %} {% trans "Fursuit" %} {% else %} {% trans "Printed Item" %} {% endif %}
{% endfor %}
{% trans "Payment" %}

{% if order.payment_method == 'paypal' %} PayPal {% elif order.payment_method == 'credit_card' %} {% trans "Credit Card" %} {% else %} {% trans "Bank Transfer" %} {% endif %}

{{ order.total_price }} €

{% for update in order.progress_updates.all %}
{{ update.title }}
{{ update.created_at|date:"d.m.Y H:i" }}

{{ update.description }}

{% if update.image %} {% trans 'Progress Image' %} {% endif %}
{% endfor %}
{% endfor %}
{% else %}

{% trans "No orders yet" %}

{% trans "You haven't placed any orders yet." %}

{% trans "Start Shopping" %}
{% endif %}
>>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb {% endblock %}