{% if selected_textbook_id %}
{% for textbook in textbooks %}
{% if textbook.id|string == selected_textbook_id|string %}
{% if textbook.cover_url %}
{% endif %}
{{ textbook.name }} - {{ textbook.author }}
{% endif %}
{% endfor %}
{% else %}
Учебник не выбран
{% endif %}