Experiment Reports:
Name
|
StartDate
|
EndDate
|
Channel
|
{% for report in experiment_reports %}
{{report.slug}}
|
{{report.startDate}}
|
{{report.endDate}}
|
{{report.channel}}
|
{% endfor %}
Other Reports:
Name
|
Branch
|
StartDate
|
EndDate
|
Channel
|
{% for report in other_reports %}
{{report.slug}}
|
{% for branch in report.branches %}
{% if branch.last == True %}
{{branch.name}}
|
{{branch.startDate}}
|
{{branch.endDate}}
|
{{branch.channel}}
|
{% else %}
{{branch.name}}
|
{{branch.startDate}}
|
{{branch.endDate}}
|
{{branch.channel}}
|
{% endif %}
{% endfor %}
{% endfor %}