diff --git a/snikket_web/admin.py b/snikket_web/admin.py index 24e6cde..a32b405 100644 --- a/snikket_web/admin.py +++ b/snikket_web/admin.py @@ -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", ) diff --git a/snikket_web/templates/admin_create_invite_form.html b/snikket_web/templates/admin_create_invite_form.html index 474b5e5..acda7ec 100644 --- a/snikket_web/templates/admin_create_invite_form.html +++ b/snikket_web/templates/admin_create_invite_form.html @@ -7,6 +7,7 @@
{#- -#} {{ invite_form.type_.label.text }} + {% trans %}Choose whether this invitation link will allow more than one person to join.{% endtrans %} {{- invite_form.type_ -}}