{% extends "base.html" %} {% block title %}{{ process.process_name }} - Consumption Sheets - ScanLook{% endblock %} {% block content %}
Back to Processes

{{ process.process_name }}

Key: {{ process.process_key }}

🗄️

Database

Define fields for header and detail tables

{{ header_fields|length }} Header Fields
{{ detail_fields|length }} Detail Fields
Configure Fields
📊

Excel Template

Upload template and map fields to cells

{% if process.template_file %} {{ process.template_filename or 'Uploaded' }} {% else %} No template {% endif %}
{{ process.rows_per_page or 30 }} Rows/Page
Configure Template
{% if header_fields or detail_fields %}

Field Preview

{% if header_fields %}

Header Fields

{% for field in header_fields %}
{{ field.field_label }} {{ field.field_type }} {% if field.excel_cell %} → {{ field.excel_cell }} {% endif %}
{% endfor %}
{% endif %} {% if detail_fields %}

Detail Fields

{% for field in detail_fields %}
{{ field.field_label }} {{ field.field_type }} {% if field.excel_cell %} → Col {{ field.excel_cell }} {% endif %}
{% endfor %}
{% endif %}
{% endif %}
{% endblock %}