{% extends "order/order_base.html" %} {% load inventree_extras %} {% load i18n %} {% load static %} {% load markdownify %} {% block details %} {% include 'order/tabs.html' with tab='notes' %} {% if editing %}

{% trans "Order Notes" %}


{% csrf_token %} {{ form }}
{{ form.media }} {% else %}

{% trans "Order Notes" %}


{{ order.notes | markdownify }}
{% endif %} {% endblock %} {% block js_ready %} {{ block.super }} {% if editing %} {% else %} $("#edit-notes").click(function() { location.href = "{% url 'purchase-order-notes' order.id %}?edit=1"; }); {% endif %} {% endblock %}