{% if subject.is_available %}
{% trans "Yes" %}
{% else %}
{% trans "No" %}
{% endif %}
{% trans "General recruiting notes" %}
{% if subject.note_hard_of_hearing or subject.note_difficult_to_understand or subject.note_abusive_language or subject.subjectnote_set.exists %}
{% if subject.note_hard_of_hearing %}
{{ subject|verbose_name:'note_hard_of_hearing' }}
{% endif %}
{% if subject.note_difficult_to_understand %}
{{ subject|verbose_name:'note_difficult_to_understand' }}
{% endif %}
{% if subject.note_abusive_language %}
{{ subject|verbose_name:'note_abusive_language' }}
{% endif %}
{% for note in subject.subjectnote_set.all %}
{{ note.content }}
{% endfor %}
{% else %}
—
{% endif %}
{% has_perm 'contacts.change_contact' user view.study as can_change_contact %}
{% if can_change_contact %}
{% trans 'Edit contact data'%}
{% endif %}
{% has_perm 'subjects.change_subject' user as can_change_subject %}
{% if can_change_subject %}
{% trans 'Edit subject' %}
{% endif %}
{% has_perm 'recruitment.change_attributeset' user view.study as can_change_attributeset %}
{% if can_change_attributeset %}
{% trans 'Edit attributes'%}
{% endif %}