{% extends "base.html" %} {% block title %}Groups — {{ config.BBS_NAME }}{% endblock %} {% block content %}

User Groups / Clans

{% if current_user.is_authenticated %}
Create Group
{% endif %} {% if groups %}
{% for g in groups %}
{% if g.tag %}{{ g.tag }}{% endif %} {{ g.name }}

Leader: {{ g.leader.username if g.leader else '?' }} · Members: {{ g.members.count() }} · {% if g.is_open %}Open{% else %}Invite-only{% endif %}

{% if g.description %}

{{ g.description[:140] }}{% if g.description|length > 140 %}...{% endif %}

{% endif %} View
{% endfor %}
{% else %}

No groups yet. {% if current_user.is_authenticated %}Start one.{% endif %}

{% endif %} {% endblock %}