{% extends "workshop/base.html" %} {% block breadcrumb %}
  • Home
  • {{ workshop.title }}
  • Associated events
  • {% endblock breadcrumb %} {% block content %}

    Workshop associated events


    {% if relations.count > 0 %}
    {% for r in relations %}
    {% if r.challenge_relation %}

    {{ r.challenge_relation.title }}

    {% elif r.issue_relation %}

    {{ r.issue_relation.title }}

    {% elif r.workshop_relation %}

    {{ r.workshop_relation.title }}

    {% elif r.dataset_relation %}

    {{ r.dataset_relation.title }}

    {% endif %}

    {{ r.description|safe }}


    {% endfor %}
    {% elif associated.count > 0 %}
    {% for a in associated %}
    {% if a.event_associated %}

    {{ a.event_associated.title }}

    {% elif a.dataset_associated %}

    {{ a.dataset_associated.title }}

    {% endif %}

    {{ a.description|safe }}


    {% endfor %}
    {% else %}

    There are no associated events in {{ challenge.title }}

    {% endif %}
    {% endblock content %}