Add GroupAddMembersForm and view for editing group members

This commit is contained in:
Edgar P. Burkhart 2025-06-13 17:32:17 +02:00
parent ba746c9cae
commit 8ed39c78b8
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
9 changed files with 41 additions and 5 deletions

View file

@ -1,7 +1,6 @@
{% extends "base.html" %}
{% load form %}
{% block content %}
<h1></h1>
<dialog open>
<article>
<header>

View file

@ -7,6 +7,9 @@
<a href="{% url "group_update" pk=group.pk %}"><i class="ri-edit-line"></i> Modifier le groupe</a>
</p>
<h2>Membres</h2>
<p>
<a href="{% url "group_edit_members" pk=group.pk %}" role="button"><i class="ri-user-add-fill"></i> Modifier les membres</a>
</p>
<ul>
<li>
{{ group.owner }} <i class="ri-vip-crown-fill"></i>

View file

@ -12,4 +12,4 @@
<h1>Créer un groupe</h1>
{% endif %}
{% form form %}
{% endblock content %}
{% endblock content %}