{% extends "admin/base_site_nav.html" %} {% load i18n %} {% block extrahead %}{{block.super}} {% endblock %} {% block content %}
Forecast Editor

The forecasting module analyzes the sales history (the green line in the graph) and computes the estimated sales for the future periods (the red line in the graph).

You can review the forecast results, collaborate with your team members, adjust the forecast manually and upload your own forecast values.

Let's start simple by giving us the sales history for a single item + location + customer combination.

{% if not post %}

Enter the sales history of a item + location + customer combination

{% csrf_token %}
{% else %}

Here are the forecasts for {{post.item}} - {{post.location}} - {{post.customer}}:

Check out what we did with your input data:

    {% for msg in post.messages %}
  • {{ msg | safe }}

  • {% endfor %}

Next actions:

{% endif %} {% endblock %}