{% extends "templates/lilcity/index.html" %} {% load static %} {% block title %}{{ lesson.title }} - {{ block.super }}{% endblock title %} {% block content %}
{{ lesson.title }}
{{ lesson.short_description }}
{% for content in lesson.content.all %}
{% with template="course/content/"|add:content.ctype|add:".html" %} {% include template %} {% endwith %}
{% endfor %} {% comment %}
Примеры техники
{% endcomment %}
Задавайте вопросы:
{% if user.is_authenticated %}
{% else %}
Только зарегистрированные пользователи могут оставлять комментарии.
{% endif %}
{% include "./blocks/comments.html" with object=lesson %}
{% endblock content %}