{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "Video Lessons" %}{% endblock %} {% block content %}

{% trans "Video Lessons" %}

{% trans "Educational video content on digital economy, artificial intelligence, and data analytics." %}

{% if video_lessons %}
{% for video in video_lessons %}
{{ video.title }}

{{ video.title }}

{% trans "Duration" %}: {{ video.duration }} {% trans "Views" %}: {{ video.views }} {% trans "Language" %}: {{ video.get_language_display }}

{{ video.description|truncatewords:30 }}

{% endfor %}
{% else %}

{% trans "No video lessons available." %}

{% endif %}
{% endblock %}