From f0f0fa15c9f606fa62e2b4f5b25a34052ff1bc46 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Tue, 16 Apr 2024 15:06:26 +0100 Subject: [PATCH] Small clarifications to the invitation type UI --- snikket_web/admin.py | 4 ++-- snikket_web/templates/admin_create_invite_form.html | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) 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_ -}}