{% if view.subtab == 'open' %}
{% trans 'No one to contact for recruitment!' %}
{% trans 'Currently, there are no open potential subjects.' %}
{% has_perm 'recruitment.recruit' user study as can_recruit %}
{% if can_recruit %}
{% trans 'Please add a set of potential subjects using the Add button.' %}
{% endif %}
{% elif view.subtab == 'invited' %}
{% blocktrans with subjectcount=study.min_subject_count %}
You are still in search for {{ subjectcount }} participants.
{% endblocktrans %}
{% else %}
{% trans 'List is empty' %}
{% endif %}