{% if participation.individual_start_time or participation.individual_end_time %}
{{ participation.get_time_display }}
{% endif %}
{% if participation.comments.exists %}
{% for comment in participation.comments.all %}
{% if show_comments or comment.visible_for == 2 or participation == own_participation and comment.visible_for == 1 %}
{{ comment.author }} {{ comment.text }}
{% endif %}
{% endfor %}
{% endif %}
{% if participation.participant.is_minor %}
{% translate "Minor" %}
{% endif %}
{% for abbreviation in participation.participant.qualifications|qualifications_to_essential_abbreviations %}
{{ abbreviation }}
{% endfor %}