mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-09 00:38:50 +00:00
- This app should manage more than just orders - Moved the 'Customer' model into this app
11 lines
261 B
HTML
11 lines
261 B
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
|
|
{% if customer_orders.all|length > 0 %}
|
|
<h4>Customer Orders</h4>
|
|
{% include "customer_orders/customer_orders_list.html" with customer_orders=customer_orders %}
|
|
{% endif %}
|
|
|
|
{% endblock %} |