{% extends "base.html" %} {% load i18n %} {% block content %}

{{ study.name }} — {% trans 'Filter Groups' %}

{% trans 'The subjects for the study will be picked from any of these groups:' %}

{% for group in object_list %} {% endfor %}
{% trans 'Filter group' %} {% trans 'Statistics' %} {% trans 'Actions' %}
{{ group }} {{ group.get_subject_count }} / {{ total_count }} {% if study.published %} {% trans "Duplicate" %} {% trans "View" %} {% trans "Delete" %} {% else %}
{% csrf_token %}
{% trans "Edit" %} {% trans "Delete" %} {% endif %}
{% trans "Back" %}
{% if study.published %} {% else %} {% csrf_token %} {% endif %}
{% endblock %}