{% extends "purchases/edit_po.html" %} {% load servo_tags %} {% load i18n %} {% block toolbar %} {% endblock toolbar %} {% block filter_bar %} {% endblock filter_bar %} {% block detail_view %}
{% trans "Created By" %}
{{ po.created_by }}
{% trans "Created At" %}
{{ po.created_at|date:"SHORT_DATE_FORMAT" }}
{% trans "Sales Order" %}
{{ po.sales_order|default:"" }}
{% trans "Reference" %}
{{ po.reference }}
{% trans "Confirmation" %}
{{ po.confirmation }}
{% for i in products %} {% endfor %}
{% trans "Product" %} {% trans "Reference" %} {% trans "Amount" %} {% trans "Purchase Price" %} {% trans "Received At" %}
{{ i.code }}
{{ i.title }}
{{ i.reference }} {{ i.amount }} {{ i.price|currency }} {{ i.received_at|date:"SHORT_DATE_FORMAT"|default:"-" }}
{% endblock detail_view %} {% block crumbs %}
  • {% trans "Purchase Orders" %}
  • {% endblock crumbs %}