{% extends 'base.html' %} {% load trans from i18n %} {% load static %} {% load custom_filters %} {% load django_ledger %} {% block content %}
{% include 'purchase_orders/includes/card_po.html' with dealer_slug=request.dealer.slug po_model=po_model entity_slug=entity_slug style='po-detail' %}
{% trans 'PO List' %}
{% trans 'PO Amount' %}

{% currency_symbol %}{{ po_model.po_amount | absolute | currency_format }}

{% trans 'Amount Received' %}

{% currency_symbol %}{{ po_model.po_amount_received | currency_format }}

{{ po_model.po_title }}

{% po_item_table1 po_items %}
{% include "purchase_orders/includes/mark_as.html" %} {% endblock %} {% block customJS %} {% endblock customJS %}