{% extends 'django_ledger/layouts/content_layout_1.html' %} {% load i18n %} {% load static %} {% load django_ledger %} {% block view_content %}

{% trans 'Update Purchase Order' %}

{{ po_model.po_number }}

{% csrf_token %} {% if form.errors %}{{ form.errors }}{% endif %}
{{ form.po_title }}
{{ form.po_date }}
{{ form.po_status }}
{{ form.fulfillment_date }}
{{ form.fulfilled }}
{{ form.markdown_notes }}

{% trans 'Purchase Order Amount' %}: {% currency_symbol %}{{ po_model.po_amount | currency_format }}

{% trans 'Received Amount' %}: {% currency_symbol %}{{ po_model.po_amount_received | currency_format }}


{% po_item_formset_table item_formset %} {% endblock %}