{% for item in special_courses %}
{% if item.edit_actions != '' %}
{% if item.document == '' %} {% else %}
{{ item.document }}
{% endif %}
{% endif %}

{% if item.visibility == constant('COURSE_VISIBILITY_CLOSED') %} {{ item.title }} {{ item.code_course }} {% else %} {{ item.title }} {{ item.code_course }} {{ item.notifications }} {{ 'klipper.png' | img(22, 'CourseAutoRegister'|get_lang ) }} {% endif %}

{{ 'teacher.png' | img(16, 'Professor'|get_lang ) }}
{% endfor %}
{% for category in courses.in_category %}
{{ category.title_category }}
{% for item in category.courses %}
{% if item.edit_actions != '' %}
{% if item.document == '' %} {% else %}
{{ item.document }}
{% endif %}
{% endif %}

{% if item.visibility == constant('COURSE_VISIBILITY_CLOSED') %} {{ item.title }} {{ item.code_course }} {% else %} {{ item.title }} {{ item.code_course }} {{ item.notifications }} {% endif %}

{{ 'teacher.png' | img(16, 'Professor'|get_lang ) }}
{% endfor %}
{% endfor %} {% for item in courses.not_category %}
{% if item.edit_actions != '' %}
{% if item.document == '' %} {% else %}
{{ item.document }}
{% endif %}
{% endif %}

{% if item.visibility == constant('COURSE_VISIBILITY_CLOSED') %} {{ item.title }} {{ item.code_course }} {% else %} {{ item.title }} {{ item.code_course }} {{ item.notifications }} {% endif %}

{{ 'teacher.png' | img(16, 'Professor'|get_lang ) }}
{% endfor %}