{% extends "dataset/base/base.html" %}
{% load dataset_tags %}
{% block child_list %}
{% visible_children instance user as visible_experiments %}
Experiments
{% if request.user in instance.editors or request.user in instance.administrators %}
{% endif %}
{% if visible_experiments|length %}
{{ child.urn }} {% if child.private %}[Private]{% endif %}
{{ child.get_title }}
{{ child.get_description }}
No experiments have been associated with this set.
{% endif %} {% endblock %}