основной шаблон:
{% load i18n %}
{{ form.media }}
{% include 'transform.html' %}
{% trans 'MAIN' %}
{% if not user.is_authenticated %}
{% trans 'Log in' %}
{% trans 'Register' %}
{% else %}
{% trans 'Log out' %}
{% endif %}
{% include 'transform.html' %}
{% if user.is_authenticated %}
{% trans 'Profile' %}
{% trans 'Albums' %}
{% trans 'Notes' %}
{% endif %}
{% block content %}
{% endblock %}
{% block profile %}
{% endblock %}
шаблон с формой выбора transform.html:
{% csrf_token %}
{{ trans_form.as_table }}