{% extends "templates/lilcity/index.html" %} {% load static %} {% load data_liked from data_liked %} {% load rupluralize from plural %} {% block title %}{{ course.title }} - {{ block.super }}{% endblock title %} {% comment %} seo tags {% endcomment %} {% block description %}{{ course.short_description | striptags }}{% endblock description%} {% block twurl %}{{ request.build_absolute_uri }}{% endblock twurl %} {% block ogtitle %}{{ course.title }} - {{ block.super }}{% endblock ogtitle %} {% block ogurl %}{{ request.build_absolute_uri }}{% endblock ogurl %} {% if course.cover %} {% block ogimage %}http://{{request.META.HTTP_HOST}}{% if course.cover %}{{ course.cover.image.url }}{% else %}{% static 'img/og_courses.jpg' %}{% endif %}{% endblock ogimage %} {% endif %} {% block ogdescription %}{{ course.short_description | striptags }}{% endblock ogdescription %} {% block content %}
Вернуться
{% if has_full_access %} Редактировать {% endif %} {% if not paid and course.price and not has_full_access %}
{% if pending %}ОЖИДАЕТСЯ ПОДТВЕРЖДЕНИЕ ОПЛАТЫ{% else %}КУПИТЬ КУРС{% endif %} {% if not paid %} Подарить другу {% endif %}
{% endif %}
{{ course.category.title | upper }}
{% data_liked user course as liked %}
{{ course.title }}
{{ course.short_description | safe | linebreaks }}
{% if course.author.photo %}
{% else %}
{% endif %}
{{ course.author.get_full_name }}
{{ course.duration | rupluralize:"день,дня,дней" }}
{% if course.price %}
{{ course.price|floatformat:"-2" }}₽
{% endif %}
{{ course.lessons.count | rupluralize:"урок,урока,уроков" }}
{{ course.count_videos_in_lessons }} видео
Описание курса {% if course.author == request.user and request.user.role >= request.user.AUTHOR_ROLE %} УРОКИ {% elif request.user.role == request.user.ADMIN_ROLE %} УРОКИ {% else %} УРОКИ {% if not paid and course.price %} {% endif %} {% endif %}
{% if user.is_authenticated and course.lessons.exists %}
Содержание курса
{% for lesson in lessons %}
{{ forloop.counter }}. {{ lesson.title }}
{{ lesson.short_description | truncatechars_html:800 | safe }}
Перейти к уроку
{% endfor %}
{% endif %}
Задавайте вопросы:
{% include 'templates/blocks/share.html' with share_object_name='курсом' %}
{% endblock content %}