{% 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. #}
{% trans "Each of these is something a pass could not do for you. They are recorded as they were raised, so an item may name work you have since done." %}
| {% trans "Step" %} | {% trans "Completed" %} |
|---|---|
| {{ step.name }} | {{ step.completed }} |