{% load i18n %} {% load unfold %} {% load course_tags %} {% component "unfold/components/container.html" %}
{% component "unfold/components/title.html" with class="text-2xl font-bold text-gray-800" %} {% trans "Course Overview" %} {% endcomponent %} {% component "unfold/components/text.html" with class="text-sm text-gray-600" %} {% trans "Key metrics and statistics for this course" %} {% endcomponent %}
{% trans "View Detailed Analytics" %}
{% component "unfold/components/card.html" with class="bg-gradient-to-br from-blue-50 to-blue-100 border-none shadow-md hover:shadow-lg transition-all duration-300" %}
{% component "unfold/components/title.html" with class="text-4xl font-bold text-blue-700 m-0" %} {{ original.lessons.count }} {% endcomponent %} {% component "unfold/components/text.html" with class="text-sm font-medium text-blue-800 mt-1 opacity-80" %} {% trans "Total Lessons" %} {% endcomponent %}
{% endcomponent %} {% component "unfold/components/card.html" with class="bg-gradient-to-br from-purple-50 to-purple-100 border-none shadow-md hover:shadow-lg transition-all duration-300" %}
{% component "unfold/components/title.html" with class="text-4xl font-bold text-purple-700 m-0" %} {% get_course_quizzes_count original as quiz_count %} {{ quiz_count }} {% endcomponent %} {% component "unfold/components/text.html" with class="text-sm font-medium text-purple-800 mt-1 opacity-80" %} {% trans "Total Quizzes" %} {% endcomponent %}
{% endcomponent %} {% component "unfold/components/card.html" with class="bg-gradient-to-br from-green-50 to-green-100 border-none shadow-md hover:shadow-lg transition-all duration-300" %}
{% component "unfold/components/title.html" with class="text-4xl font-bold text-green-700 m-0" %} {{ original.participants.count }} {% endcomponent %} {% component "unfold/components/text.html" with class="text-sm font-medium text-green-800 mt-1 opacity-80" %} {% trans "Active Participants" %} {% endcomponent %}
{% endcomponent %}
{% component "unfold/components/card.html" with class="border border-gray-200 shadow-md hover:shadow-lg transition-all duration-300" %}
{% component "unfold/components/title.html" with class="text-xl font-bold mb-4 text-gray-800" %} {% trans "Course Summary" %} {% endcomponent %}

{% trans "Course Status" %}

{{ original.get_status_display }}

{% trans "Duration" %}

{{ original.duration }} {% trans "hours" %}

{% trans "Level" %}

{{ original.get_level_display }}

{% trans "Price" %}

{% if original.is_free %} {% trans "Free" %} {% else %} {{ original.final_price }} {% endif %}

{% endcomponent %}
{% include "course/course_analytics.html" %}
{% endcomponent %}