{{ profile.name|default:"Unnamed profile" }}
{% if profile.active %}
Active
{% else %}
Inactive
{% endif %}
{% if profile.timeslot %}
{{ profile.timeslot.name }}
{% for tr in profile.timeslot.time_recurrences.all %}
{{ tr.short_str }}
{% endfor %}
{% endif %}
{% with filters=profile.filters.all %}
{% if filters %}
{% for filter in filters %}
{{ filter.name }}
{% if not forloop.last %},{% endif %}
{% endfor %}
{% endif %}
{% endwith %}
{% with destinations=profile.destinations.all %}
{% if destinations %}
{% for dest in destinations %}{{ dest }}{% endfor %}
{% endif %}
{% endwith %}