{% extends "massmigration/base.html" %} {% block content %}

Migrations

{% for migration in migrations %} {% endfor %}
App Migration Status Actions
{{migration.app_label}} {{migration.name}} {% if migration.record.is_applied %}APPLIED{% elif migration.record.has_error %}ERRORED{% elif migration.record %}INITIATED{% else %}NOT RUN{% endif %} {% if not migration.record %}Run... {% elif migration.record.has_error %}Delete... {% else %}- {% endif %}
{% endblock %}