Add GroupAddMembersForm and view for editing group members
This commit is contained in:
parent
ba746c9cae
commit
8ed39c78b8
9 changed files with 41 additions and 5 deletions
|
@ -1,7 +1,6 @@
|
|||
{% extends "base.html" %}
|
||||
{% load form %}
|
||||
{% block content %}
|
||||
<h1></h1>
|
||||
<dialog open>
|
||||
<article>
|
||||
<header>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -12,4 +12,4 @@
|
|||
<h1>Créer un groupe</h1>
|
||||
{% endif %}
|
||||
{% form form %}
|
||||
{% endblock content %}
|
||||
{% endblock content %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue