{% 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? Cancel
{% else %}
Update Contract {{input_text('name', contract.name)}} {{input_textarea('charge_script', contract.charge_script, 40, 80)}} {{input_textarea('properties', contract.properties, 20, 80)}}
Delete this contract
{% endif %} {% endblock %}