{% extends view.base_template|default:"studies/study_recruitmentsettings_base.html" %} {% load i18n auth utils %} {% block title %}{% translate "Filter Groups" %} · {{ block.super }}{% endblock %} {% block content %} {% include 'studies/__filtergroup_common.html' %}
{% translate 'Any of these' %} {% blocktranslate %}{{ count }} potential subjects in total{% endblocktranslate %}
{% for group in object_list %}
{% translate 'All of these' %} {% blocktranslate with count=group.get_matches.count %}{{ count }} potential subjects{% endblocktranslate %}
{% with filters=group.subjectfilter_set.all|list %}
{% blocktranslate count count=filters|length %} {{ count }} filter {% plural %} {{ count }} filters {% endblocktranslate %}
    {% for f in filters %}
  • {{ f }}
  • {% endfor %}
{% endwith %}
{% csrf_token %}
{% translate "Edit" %} {% translate "Delete" %}
{% endfor %}
{% csrf_token %}
{% endblock %}