{% extends 'dashboard/layout.html' %} {% load currency_filters %} {% block title %} Range management | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %} {% endblock header %} {% block dashboard_content %}

Create new range

All ranges

{% if ranges.count %} {% for range in ranges %} {% endfor %}
Name Num products Date created
{{ range.name }} {{ range.num_products|default:"-" }} {{ range.date_created }} Edit {% if not range.includes_all_products %} Edit products {% endif %} Delete
{% if page_obj %} {% include "catalogue/partials/pagination.html" %} {% endif %} {% else %}

No ranges found.

{% endif %} {% endblock dashboard_content %}