{% extends "../base.html" %} {% block title %}{{ _("Groups") }}{% end block %} {% block content %}

{{ _("Groups") }}

{% for group in backend.groups %}
{{ group }}
{{ _("One member", "%(num)s members", len(group)) % { "num" : len(group) } }}
{% end %}
{% end block %}