rf-web/_includes/program/program-item.html
2020-08-16 11:54:33 +02:00

19 lines
577 B
HTML

{% assign event = include.common/program/full-program.html %}
<li class="textbox margin-16-bottom">
<a href="/rf2020/events/{{ event.ref }}">{{ event.title_ }}</a>
<span></span>
{% for eventParticipantId in event.participants %}
{% for participant in site.data.rf2020.participants %}
{% if participant.id == eventParticipantId %}
<a href="/rf2020/participants/{{ participant.ref }}">{{ participant.fullname }}</a>
{% endif %}
{% endfor %}
{% endfor %}
{% if event.format %}
<span>[{{ event.format }}]</span>
{% endif %}
</li>