{% extends "panel_base.html" %} {% block header_title %}{{gettext("Order Info")}} | {{get_sitename()}}{% endblock %} {% block title %}{{gettext("Order Info")}}{% endblock %} {% block content %}
{{gettext("ID")}} | {{gettext("User Address")}} | {{gettext("Is Shipping Required")}} | {{gettext("Product Name")}} | {{gettext("Quantity")}} | {{gettext("Price")}} | {{gettext("File")}} |
{{line_order.id}} | {{order.address.get_full_address()}} | {{line_order.is_shipping_required}} | {{line_order.variant.product.name}} {{line_order.variant.generate_names}} | {{line_order.quantity}} | {{line_order.total}} | {% if line_order.variant.is_file_required %} {{gettext("file link")}} {% endif %} |