{% extends "generic/object.html" %} {% load i18n %} {% comment %} Detail-view template for the MigrationRun model. `MigrationRunView` declares its panels through `layout = layout.SimpleLayout(...)`, so this template carries the breadcrumbs and the completed-step table. Context: - steps: One {name, completed, ...} per completed step, oldest first - warnings: Every warning the passes recorded on the run, in the order they were raised {% endcomment %} {% block breadcrumbs %} {# The default breadcrumb reverses this model's list route, which a run deliberately has none of. #} {% endblock breadcrumbs %} {% block content %} {{ block.super }} {% if warnings %}
{% endif %} {% if steps %}

{% trans "Completed steps" %}

{% for step in steps %} {% endfor %}
{% trans "Step" %} {% trans "Completed" %}
{{ step.name }} {{ step.completed }}
{% endif %} {% endblock content %}