16 lines
514 B
HTML
16 lines
514 B
HTML
{% extends "base.html" %}
|
|
{% load form youtube %}
|
|
{% block content %}
|
|
<h1>
|
|
{% if group.owner == user %}
|
|
<i class="ri-vip-crown-fill owner"></i>
|
|
{% else %}
|
|
<i class="ri-group-2-fill"></i>
|
|
{% endif %}
|
|
{{ group.name }}
|
|
</h1>
|
|
{% include "game/include/group_buttons.html" %}
|
|
{% include "game/include/group_games.html" %}
|
|
{% include "game/include/group_members.html" %}
|
|
{% include "game/include/group_musics.html" %}
|
|
{% endblock content %}
|