{% extends 'generic/_base.html' %} {% load form_helpers %} {% load i18n %} {% load render_table from django_tables2 %} {% block title %} {% blocktrans with count=table.rows|length %}Migrate {{ count }} Branches?{% endblocktrans %} {% endblock %} {% block tabs %} {% endblock tabs %} {% block content %} {# Confirmation form #}
{% csrf_token %} {# Hidden PK fields #} {% for field in form.hidden_fields %} {{ field }} {% endfor %} {# Form buttons #}
{% trans "Cancel" %}
{# /Confirmation form #} {# Selected branches list #}
{% render_table table 'inc/table.html' %}
{# /Selected branches list #} {% endblock content %}