{% import "_includes/forms" as forms %} {% if newMigrations or migrationHistory %} {% if newMigrations %}
{{ 'Apply new migrations'|t('app') }}
{% else %}

{{ 'No pending content migrations.'|t('app') }}

{% endif %} {% for newMigration in newMigrations %} {% endfor %} {% for migrationName, migration in migrationHistory %} {% endfor %}
{{ 'Name'|t('app') }} {{ 'Status'|t('app') }} {{ 'Apply Time'|t('app') }}
{{ newMigration }} {{ 'New'|t('app') }}
{{ migrationName }} {{ 'Applied'|t('app') }} {{ migration|datetime() }}
{% else %}

{{ 'No content migrations.'|t('app') }}

{% endif %}