{% extends "layout.html" %} {% block title %}Base Group: {{ name }}{% endblock %} {% block inner_content %}

Base Group: {{ name }}

{{ groups|length }} groups
{% if not groups %} Group doesn't exist {% else %}
Groups:
    {% for g in groups %}
  • {{ g }}
  • {% endfor %}
{% endif %}
{% endblock %}