{% extends 'generic/_base.html' %} {% load form_helpers %} {% load i18n %} {% block title %} {% blocktrans %}Migrate Branch {{ branch }}{% endblocktrans %} {% endblock %} {% block tabs %} {% endblock tabs %} {% block content %} {# Form tab #}
{% if branch.pending_migrations %}
{% csrf_token %}

{% trans "Pending Migrations" %}

{% with count=branch.pending_migrations|length %} {% blocktrans %} The following {{ count }} database migrations will be applied to the branch: {% endblocktrans %} {% endwith %}

    {% for app_label, name in branch.pending_migrations %}
  • {{ app_label }}.{{ name }}
  • {% endfor %}
{% render_field form.confirm %}
{% else %}

{% trans "No pending migrations found." %}

{% endif %}
{# /Form tab #} {% endblock content %}