{% extends "layout_report.html" %} {% load static %} {% load app_filters %} {% load humanize %} {% load tz %} {% block content %} {{ block.super }}
{% if report_type == "cold" %}Cold Start Walk Through{% else %}Previous Job:_________________{% endif %}
{% if report_type == "cold" %}{% else %}New Job:{% if report_type == "std" %}{{ job }}{% endif %}{% endif %}
{% if report_type == "cold" %}Product: _______________{% else %}New Product:{% if report_type == "std" %}{{ job.product }}{% endif %}{% endif %}
{% if report_type == "cold" %}Downtime Code:{% else %}Changeover Code:{% endif %} {{ changeover_code }}
{% if report_type == "cold" %}Lot: _______________{% else %}New Lot:{% if report_type == "std" %}{{ job.lot }}{% endif %}{% endif %}
Production Line: {{ line }}
Task
Description
CompletedBy
Time Cplt
Maintenance
Lab
TeamLeader
{% for changeover_row in changeover_rows %}
{{ changeover_row.task }}
{{ changeover_row.description | safe }}
{% if not changeover_row.operator and not changeover_row.blender %}{{ asterisks }}{% elif changeover_row.operator and not changeover_row.blender %}NoBL{% else %} {% endif %}
{% if changeover_row.std_time %}{{ asterisks }}{% else %} {% endif %}
{% if changeover_row.maint %} {% else %}{{ asterisks }}{% endif %}
{% if changeover_row.lab %} {% else %}{{ asterisks }}{% endif %}
{% if changeover_row.team_leader %} {% else %}{{ asterisks }}{% endif %}
{% endfor %}
{{ report_title }}
{% if report_type == "cold" %}Cold Start Walk Through{% else %}Previous Job:_________________{% endif %}
{% if report_type == "cold" %}{% else %}New Job:{% if report_type == "std" %}{{ job }}{% endif %}{% endif %}
{% if report_type == "cold" %}Product: _______________{% else %}New Product:{% if report_type == "std" %}{{ job.product }}{% endif %}{% endif %}
{% if report_type == "cold" %}Downtime Code:{% else %}Changeover Code:{% endif %} {{ changeover_code }}
{% timezone "America/Chicago" %}
{% now "m/d/y" %}
{% now "h:i:s A" %}
{% endtimezone %}
{% if report_type == "cold" %}Lot: _______________{% else %}New Lot:{% if report_type == "std" %}{{ job.lot }}{% endif %}{% endif %}
Production Line: {{ line }}
CHANGEOVER LOGGING
DATE/TIME/INITIALS
INSPECTION COMMENTS
COC Issued to Floor
{% if report_type == "cold" %}{% else %}Changeover Started{% endif %}
START-UP COMMENTS
{% if report_type == "cold" %} {% else %}Changeover Complete{% endif %}
Maint Inspection Complete
RELIABILITY COMMENTS
TL Inspection Complete
Lab Inspection Complete
{% endblock content %}