{% extends "industry_reforged/base.html" %} {% load i18n humanize %} {% load industry_tags %} {% block details %}
{% trans "Set corporate rules for production, material efficiency, and pricing overrides." %}
| {% trans "Task Name" %} | {% trans "Status" %} | {% trans "Last Run" %} | {% trans "Duration" %} | {% trans "Message" %} |
|---|---|---|---|---|
| {{ log.task_name }} | {% if log.status == 'SUCCESS' %} Success {% elif log.status == 'FAILED' %} Failed {% else %} Running {% endif %} | {{ log.last_run|naturaltime }} | {{ log.duration_seconds|floatformat:2 }}s | {% if log.status == 'FAILED' and log.message %} {% else %} {{ log.message|truncatechars:50 }} {% endif %} |
| {% trans "No tasks have run yet." %} | ||||