diff --git a/apps/activity/templates/activity/includes/activity_info.html b/apps/activity/templates/activity/includes/activity_info.html index a16ad33..8619cf0 100644 --- a/apps/activity/templates/activity/includes/activity_info.html +++ b/apps/activity/templates/activity/includes/activity_info.html @@ -40,7 +40,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
{{ activity.attendees_club }}
{% trans 'can invite'|capfirst %}
-
{{ activity.activity_type.can_invite|yesno }}
+
{{ activity.activity_type.can_invite|yesno:_("yes,no,maybe") }}
{% if activity.activity_type.can_invite %}
{% trans 'guest entry fee'|capfirst %}
@@ -48,10 +48,10 @@ SPDX-License-Identifier: GPL-3.0-or-later {% endif %}
{% trans 'valid'|capfirst %}
-
{{ activity.valid|yesno }}
+
{{ activity.valid|yesno:_("yes,no,maybe") }}
{% trans 'opened'|capfirst %}
-
{{ activity.open|yesno }}
+
{{ activity.open|yesno:_("yes,no,maybe") }}
diff --git a/apps/member/templates/member/includes/profile_info.html b/apps/member/templates/member/includes/profile_info.html index 3a927c9..650bd78 100644 --- a/apps/member/templates/member/includes/profile_info.html +++ b/apps/member/templates/member/includes/profile_info.html @@ -48,7 +48,7 @@
{{ user_object.profile.address }}
{% trans 'paid'|capfirst %}
-
{{ user_object.profile.paid|yesno }}
+
{{ user_object.profile.paid|yesno:_("yes,no,maybe") }}
{% endif %} {% if user_object.note and "note.view_note"|has_perm:user_object.note %} diff --git a/apps/registration/templates/registration/future_profile_detail.html b/apps/registration/templates/registration/future_profile_detail.html index 78251eb..77f7b00 100644 --- a/apps/registration/templates/registration/future_profile_detail.html +++ b/apps/registration/templates/registration/future_profile_detail.html @@ -41,7 +41,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
{{ object.profile.phone_number }}
{% trans 'paid'|capfirst %}
-
{{ object.profile.paid|yesno }}
+
{{ object.profile.paid|yesno:_("yes,no,maybe") }}