{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "Инструкция" %}{% endblock title %} {% block main %}
{% for instruction_section in instruction_sections %}

{{ instruction_section.title }}

{% autoescape off %} {{ instruction_section.text }} {% endautoescape %}
{% endfor %}
{% endblock main %}