{% extends 'base.html' %} {% load i18n %} {% load static %} {% load django_ledger %} {% load crispy_forms_filters %} {% block title %} {{ _("Create Bill") |capfirst }} {% endblock title %} {% block content %}

{% trans 'Create Bill' %}

{% csrf_token %} {% if po_model %}

{% trans 'Bill for' %} {{ po_model.po_number }}

{% trans 'Bill for' %} {{ po_model.po_title }}

{% for itemtxs in po_itemtxs_qs %}{{ itemtxs }}{% endfor %}
{% endif %}
{{ form|crispy }}

{% trans "Cancel" %}
{% endblock %}