{% with courses=organization.get_courses %}
{% if courses %}
{% trans "Related courses" %}
{% for course in courses %}
{% if course.extended_object.publisher_is_draft or course.check_publication %}
{% include "courses/cms/fragment_course_glimpse.html" with course=course %}
{% endif %}
{% endfor %}
{% endif %}
{% endwith %}
{% with persons=organization.get_persons %}
{% if persons %}
{% trans "Related persons" %}
{% for person in persons %}
{% if person.extended_object.publisher_is_draft or person.check_publication %}
{% include "courses/cms/fragment_person_glimpse.html" with person=person %}
{% endif %}
{% endfor %}