{% extends "base.html" %} {% block title %}{{ g.name }}{% endblock %} {% block content %}

{% if g.tag %}{{ g.tag }}{% endif %} {{ g.name }}

Leader: {{ g.leader.username }} · Founded {{ g.created_at.strftime('%Y-%m-%d') }} · {% if g.is_open %}Open{% else %}Invite-only{% endif %}

{% if g.description %}
{{ g.description }}
{% endif %}
Members ({{ members | length }})
{% if current_user.is_authenticated %}
{% if not is_member %} {% if g.is_open %}
{% endif %} {% else %} {% if current_user.id != g.leader_id %}
{% endif %} {% endif %} {% if current_user.id == g.leader_id or current_user.is_admin %}
{% endif %}
{% endif %}
← All groups
{% endblock %}