{% extends "base.html" %} {% block title %} » DC Contracts » {{ contract.name }} » Batches » Add {% endblock %} {% block nav %} DC Contracts » {{contract.name}} » Batches » Add {% endblock %} {% block content %}

Add a batch

{{input_text('reference', next_batch_reference, required=True)}} {{input_text('description', '', placeholder=next_batch_description)}}

Existing Batches

{% for batch in batches %} {% endfor %}
Reference Description
{{batch.reference}} {{batch.description}}
{% endblock %}