{% extends 'stela_control/index.html' %} {% load i18n %} {% load l10n %} {% load crispy_forms_tags %} {% load static %} {% load hosts %} {% load stelatags %} {% load humanize %} {% block bsCall %}{% endblock %} {% block section %}

{% trans "Recipt" %}

  • N° {% trans "Recipt" %}: {{inv.control_id}}
  • {% trans "Reference" %}: {{inv.order.transaction_id}}
  • {% trans "Buyer" %}: {{inv.recipt.customer.full_name}}
  • {% trans "List of purchased items" %}:
      {% if inv.recipt.service_recipt.all %} {% for get in inv.recipt.service_recipt.all %}
    • + {{get.field.title}} x {{get.qty}} {% trans "units" %}
    • {% endfor %} {% elif inv.recipt.product_recipt.all %} {% for get in inv.recipt.product_recipt.all %}
    • + {{get.field.title}} x {{get.qty}} {% trans "units" %}
    • {% endfor %} {% endif %}
  • {% trans "Payment method" %}: {{inv.order.payment_option}}
  • {% trans "Amount" %}: $ {{inv.order.total_paid}}
  • {% trans "Seller" %}: {{inv.recipt.owner.username}}
  • {% trans "Date" %}: {{inv.created}}

{% trans "Payment processed by" %} Stela Payments, {% trans "Any irregularity presented with your purchase can notify it through" %} https://stela.emmerut.com/contact

{% endblock %}