{% if user.is_authenticated %}
{% blocktrans %}Welcome {{ user }} !{% endblocktrans %}
{% else %}{% trans "Welcome !" %}
{% endif %}{% trans "You are currently on the Koala LMS learning platform. You have the possibility to access the online courses in the « Studying » section or to create new ones in the « Teaching » section." %}
{% trans "Studying" %}
{% if has_obj %}
{% for course in page_obj %}
{% include "learning/course/_includes/block/course_block_base.html" with course=course %}
{% endfor %}
{% include "learning/_includes/paginator_buttons.html" with current_page=page_obj %}
{% else %}
{% trans "You did not register on any course yet. Go to the search page to find owesome courses to follow." %}
{% endif %}
{% trans "Teaching" %}
{% trans "My courses" %}
{% trans "Courses are compose of of activities. User can register to courses and then become students on courses." %}
{% trans "My activities" %}
{% trans "Activites are parts of courses you can reuse and share. Activities contain educational resources." %}
{% trans "My resources" %}
{% trans "Resources are educational resources that can be text, videos, audios or whatever you like. Resources can be reused and shahred between activites." %}