{% extends "base.html" %} {% block title %} » Supplier Contracts » {{contract.name}} {% endblock %} {% block nav %} » Supplier Contracts » {{contract.name}} » Edit {% endblock %} {% block content %} {% if request.method == 'GET' and request.values.delete %}

Are you sure you want to delete this contract?

{% else %}

Update Contract

{{input_text('name', contract.name)}}
Charge script
{{input_textarea('charge_script', contract.charge_script, 40, 80)}}

Properties
{{input_textarea('properties', contract.properties, 20, 80)}}

Delete this contract

{% endif %} {% endblock %}