Small clarifications to the invitation type UI

This commit is contained in:
Matthew Wild
2024-04-16 15:06:26 +01:00
parent 30a9a6816f
commit f0f0fa15c9
2 changed files with 3 additions and 2 deletions

View File

@@ -284,8 +284,8 @@ class InvitePost(BaseForm):
type_ = wtforms.RadioField(
_l("Invitation type"),
choices=[
("account", _l("Individual")),
("group", _l("Group")),
("account", _l("Individual (for one person)")),
("group", _l("Group (for multiple people)")),
],
default="account",
)

View File

@@ -7,6 +7,7 @@
<div class="f-ebox">
<fieldset>{#- -#}
<legend>{{ invite_form.type_.label.text }}</legend>
<span>{% trans %}Choose whether this invitation link will allow more than one person to join.{% endtrans %}</span>
{{- invite_form.type_ -}}
</fieldset>
</div>