Skip to content
Snippets Groups Projects
Verified Commit 8d183013 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Improve group views

- Show group type and parent groups
- Allow additional_fields to be empty
- After save redirect to group details page
parent 32460cd7
No related branches found
No related tags found
1 merge request!303Improve group views
Pipeline #2589 passed
......@@ -302,7 +302,9 @@ class Group(ExtensibleModel):
null=True,
blank=True,
)
additional_fields = models.ManyToManyField(AdditionalField, verbose_name=_("Additional fields"))
additional_fields = models.ManyToManyField(
AdditionalField, verbose_name=_("Additional fields"), blank=True
)
def get_absolute_url(self) -> str:
return reverse("group_by_id", args=[self.id])
......
......@@ -31,6 +31,25 @@
</p>
{% endif %}
<table>
<tr>
<th>
<i class="material-icons center" title="{% trans "Group type" %}">category</i>
</th>
<td>
{{ group.group_type }}
</td>
</tr>
<tr>
<th>
<i class="material-icons center" title="{% trans "Parent groups" %}">vertical_align_top</i>
</th>
<td>
{{ group.parent_groups.all|join:", " }}
</td>
</tr>
</table>
<h5>{% blocktrans %}Owners{% endblocktrans %}</h5>
{% render_table owners_table %}
......
......@@ -282,11 +282,11 @@ def edit_group(request: HttpRequest, id_: Optional[int] = None) -> HttpResponse:
if request.method == "POST":
if edit_group_form.is_valid():
edit_group_form.save(commit=True)
group = edit_group_form.save(commit=True)
messages.success(request, _("The group has been saved."))
return redirect("groups")
return redirect("group_by_id", group.pk)
context["edit_group_form"] = edit_group_form
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment