{% extends 'base.html' %} {% load static %} {% load course_tags %} {% block title %}{{course.title}}{% endblock %} {% block content %}

{{course.title}}

{{course.description|truncatewords:15}}

...
Categories
{{course.category}}
Review
9.45 (9.8k+ reviews)

Course Description

{{course.description|slice:"0:540"}}

{{course.description|slice:"540:3000"}}

What you'll learn

    {% for learn in course.what_you_learn_set.all|slice:"0:5" %}
  • {{learn.points}}
  • {% endfor %}
    {% for learn in course.what_you_learn_set.all|slice:"5:12" %}
  • {{learn.points}}
  • {% endfor %}

Requirements

    {% for requirement in course.requirements_set.all %}
  • {{requirement.points}}
  • {% endfor %}
{% for lesson in course.lesson_set.all %}
{% for video in lesson.video_set.all %}
{{video.title}}
{{video.time_duration}} mins
{% endfor %}
{% endfor %}

About the instructor

...

{{course.author.name}}

Software Developer
4.87 Instructor rating
1,533 reviews
23,912 students
29 courses

{{course.author.about_author}}

Student feedback

{{ average_rating|floatformat:2 }}

Course rating

{{ ratings_count }} Reviews

{% for rating, count in ratings_breakdown.items %}
{{ count }}
{% endfor %}
    {% for review in reviews %}
  • {% if review.user.userprofile.avatar %} Profile Picture {% else %}
    {{ review.user.first_name|slice:":1" }}{{ review.user.last_name|slice:":1"}}
    {% endif %}
    {{ review.user.username }}

    {{ review.review_title }}

    {{ review.review_content }}

  • {% empty %}
  • No reviews yet. Be the first to review this course!
  • {% endfor %}

Add Reviews & Rate

What is it like to Course?
{% csrf_token %} {{ form.non_field_errors }}
{{ form.rating.errors }}
{{ form.review_title.errors }}
{{ form.review_content.errors }}
...
{% if course.price == 0 %}
Free
{{course.discount}}% Off
{% else %}
৳ {% discount_calculation course.price course.discount %} ৳ {{course.price}}
{{course.discount}}% Off
{% endif %}
2 days left at this price!
{% if check_enroll is None %} ENROLL {% else %} {% endif %}
  • Duration
    {{time_duration.sum}} mins
  • Lectures
    {{course.video_set.all.count}}
  • Enrolled
    1982 students
  • Language
    {{course.language}}
  • Skill level
    {{course.level.name}}
  • Deadline
    {{course.Deadline}}
  • Certificate
    {{course.Certificate}}
  • Share this course

Related Courses

Discover your perfect program in our courses.

{% endblock %}