{% extends "admin/base_site_nav.html" %} {% load i18n %} {% block content %} {% if wizard %}
{% for step in wizard.steps %}
{% if step.content and not step.locked %}
{{ step.content|safe }}
{% endif %}
{% endfor %}
{% if mode %}
Your progress
{% if wizard.mode == "forecast" %}{% include 'wizard/progress_forecasting.svg' %} {% elif wizard.mode == "inventory" %}{% include 'wizard/progress_inventoryplanning.svg' %} {% else %}{% include 'wizard/progress_productionplanning.svg' %}{% endif %}
{% endif %} {% if wizard.script %} {% endif %}
{% else %} {{ block.super }} {% endif %} {% endblock %}