{% extends "base.html" %} {% block title %}Excel Template - {{ process.process_name }} - ScanLook{% endblock %} {% block content %}
Back to {{ process.process_name }}

Excel Template

{{ process.process_name }}

Template File

{% if process.template_filename %}
📄 {{ process.template_filename }} Download
{% else %}

No template uploaded yet

{% endif %}

Excel files (.xlsx) only

Page Settings

Max detail rows before starting a new page

Excel row number where detail data begins

Field Mappings

Excel cell mappings are configured per-field in the Database section. Here's a summary:

{% if header_fields or detail_fields %}
{% if header_fields %}

Header Fields

{% for field in header_fields %} {% endfor %}
Field Excel Cell
{{ field.field_label }} {% if field.excel_cell %} {{ field.excel_cell }} {% else %} Not mapped {% endif %}
{% endif %} {% if detail_fields %}

Detail Fields

Columns only — rows start at {{ process.detail_start_row or 10 }}

{% for field in detail_fields %} {% endfor %}
Field Excel Column
{{ field.field_label }} {% if field.excel_cell %} {{ field.excel_cell }} {% else %} Not mapped {% endif %}
{% endif %}
Edit Field Mappings {% else %}

No fields defined yet. Add fields first.

{% endif %}
{% endblock %}