{% extends "base.html" %} {% load static %} {% load i18n %} {% load crispy_forms_tags %} {% block content %}

{% trans "Billings list" %}

{% csrf_token %} {% crispy form %} {{ formset.management_form }} {% for form in formset %} {% if forloop.first %} {% endif %} {{ form.billing }} {{ form.id }} {% endfor %}
{{ form.designation.label }}* {{ form.quantity.label }}* {{ form.amount.label }}*
{{ form.designation }} {{ form.quantity }} {{ form.amount }}
{% endblock %} {% block extrajavascript %} {% endblock %}