{% extends 'subjects/view.html' %} {% load static i18n pagination %} {% load django_bootstrap_breadcrumbs %} {% block javascript%} {{ block.super }} {% endblock%} {% block breadcrumbs %} {{ block.super }} {% trans 'Groups' as bread %} {% breadcrumb bread 'groups:index' subject.slug %} {% endblock %} {% block content %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% trans "Create Group" %}
{% for group in groups %}
{% autoescape off %} {{ group.description }} {% endautoescape %} {% if group.participants.count >= 0 %} {% if group.participants.count == 0 %}

{% trans 'No participants' %}

{% elif group.participants.count == 1%}

{% trans 'Participant' %}:

{% else %}

{% trans 'Participants' %}:

{% endif %} {% endif %}
    {% for user in group.participants.all %}
  • {{ user }}

  • {% endfor %}
{% endfor %} {% pagination request paginator page_obj %}
{% endblock %}