{% extends 'admin/change_form.html' %} {% load i18n %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% csrf_token %} {% if form.non_field_errors %} {% endif %}
N. {{ obj.number }} {% trans 'of' %} {{ obj.date_p }}: {{ obj.owner.name }}
{{ form.non_field_errors }}
{% trans 'Status' %} {{ obj.get_status_display }}
{% trans 'Date' %} {{ obj.date_i }} {% trans 'Number' %} {{ obj.number|default_if_none:"" }}
{% trans 'Ref Owner Number' %} {{ obj.owner_number }}
{% trans 'Bill to' %} {{ obj.owner.name }} {% trans 'Ship to' %} {{ obj.recipient.name }}
{{ form.attention_of.label }} {{form.attention_of.errors }}{{ form.attention_of }}
{{ form.mails.label }} {{form.mails.errors }}{{ form.mails }}
{{ form.other_mails.label }} {{form.other_mails.errors }}{{ form.other_mails }}
{% endblock %}