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

{% trans "Projects & Video Lessons" %}

{% trans "Research projects and educational video lessons on digital economy, artificial intelligence and big data analytics." %}

{% if research_projects %}

{% trans "Research Projects" %}

{% for project in research_projects %}

{{ project.title }}

{{ project.get_project_type_display }}

{{ project.description|truncatewords:30 }}

{% trans "Start" %}: {{ project.start_date|date:"M Y" }} {% if project.end_date %} {% trans "End" %}: {{ project.end_date|date:"M Y" }} {% endif %} {% if project.funding_body %} {% trans "Funding" %}: {{ project.funding_body }} {% endif %}
{% if project.link %}

{% trans "Learn More" %}

{% endif %}
{% endfor %}
{% endif %} {% if educational_projects %}

{% trans "Educational Projects" %}

{% for project in educational_projects %}

{{ project.title }}

{{ project.description|truncatewords:30 }}

{% trans "Start" %}: {{ project.start_date|date:"M Y" }} {% if project.end_date %} {% trans "End" %}: {{ project.end_date|date:"M Y" }} {% endif %}
{% if project.link %}

{% trans "Learn More" %}

{% endif %}
{% endfor %}
{% endif %} {% if video_lessons %}

{% trans "Video Lessons" %}

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

{{ video.title }}

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

{{ video.description|truncatewords:20 }}

{% endfor %}
{% trans "View All Videos" %}
{% endif %}
{% endblock %}