{% extends "studies/study_recruitmentsettings_base.html" %} {% load i18n auth utils %} {% block title %}{% trans "Filter Groups" %} · {{ block.super }}{% endblock %} {% block content %} {% include 'studies/__filtergroup_common.html' %}
{% trans 'Any of these' %} {% blocktrans %}{{ count }} potential subjects in total{% endblocktrans %}
{% for group in object_list %}
{% trans 'All of these' %} {% blocktrans with count=group.get_matches.count %}{{ count }} potential subjects{% endblocktrans %}
{% with filters=group.subjectfilter_set.all|list %}
{% blocktrans count count=filters|length %} {{ count }} filter {% plural %} {{ count }} filters {% endblocktrans %}
    {% for f in filters %}
  • {{ f }}
  • {% endfor %}
{% endwith %}
{% if study.status != study.EDIT %} {% trans "Duplicate" %} {% trans "View" %} {% trans "Delete" %} {% else %}
{% csrf_token %}
{% trans "Edit" %} {% trans "Delete" %} {% endif %}
{% endfor %}
{% if study.status != study.EDIT %} {% else %} {% csrf_token %} {% endif %}
{% endblock %}