{% extends "base.html" %} {% load steeloweb_extras %} {% block title %}{% if form.instance.pk %}Edit{% else %}Upload{% endif %} Master Excel File{% endblock %} {% block content %}

{% if form.instance.pk %} Edit Master Excel File {% else %} Upload Master Excel File {% endif %}

{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
Getting Started
  1. First, download the template
  2. Modify the template according to your needs
  3. Upload your modified file here
  4. The file will be validated automatically
{% csrf_token %}
{{ form.name }} {% if form.name.help_text %}
{{ form.name.help_text }}
{% endif %} {% if form.name.errors %}
{{ form.name.errors|join:", " }}
{% endif %}
{{ form.description }} {% if form.description.help_text %}
{{ form.description.help_text }}
{% endif %} {% if form.description.errors %}
{{ form.description.errors|join:", " }}
{% endif %}
{% if form.instance.pk and form.instance.file %}
Current file: {{ form.instance.file.name|basename }}
Uploading a new file will replace the existing one.
{% endif %} {{ form.file }} {% if form.file.help_text %}
{{ form.file.help_text }}
{% endif %} {% if form.file.errors %}
{{ form.file.errors|join:", " }}
{% endif %}
{% if form.non_field_errors %}
{{ form.non_field_errors|join:", " }}
{% endif %}
Cancel
Uploading...
Uploading file...

Please wait while your file is being uploaded and validated. This may take a moment for large files.

{% if not form.instance.pk %}
What is a Master Excel File?

The master Excel file contains all the input data configurations for your simulation:

  • Technology settings - CAPEX values, efficiency parameters
  • Cost data - Input costs, carbon costs, transport costs
  • Plant configurations - Technology switches, operational parameters
  • Regional data - Energy prices, infrastructure availability

By providing your own master Excel file, you can customize all aspects of the simulation to match your specific scenario.

{% endif %}
{% endblock %}