Dataset associated events
{% if relations.count > 0 %}
{% for r in relations %}
{% if r.challenge_relation %}
{% elif r.issue_relation %}
{% elif r.workshop_relation %}
{% elif r.dataset_relation %}
{% endif %}
{{ r.description|safe }}
{% endfor %}
{% elif associated.count > 0 %}
{% for a in associated %}
{% if a.event_associated %}
{% elif a.dataset_associated %}
{% endif %}
{{ a.description|safe }}
{% endfor %}
{% else %}
There are no associated events in {{ challenge.title }}
{% endif %}