diff --git a/users/forms.py b/users/forms.py index 582b2f97..7bb68046 100644 --- a/users/forms.py +++ b/users/forms.py @@ -390,8 +390,13 @@ class AdherentCreationForm(AdherentForm): # Checkbox for GTU gtu_check = forms.BooleanField(required=True) - #gtu_check.label = mark_safe("{} {}{}".format( - # _("I commit to accept the"), GeneralOption.get_cached_value('GTU'), _("General Terms of Use"), _("."))) + gtu_check.label = mark_safe( + "{} {}{}".format( + _("I commit to accept the"), + GeneralOption.get_cached_value('GTU').url, + _("General Terms of Use"), _(".") + ) + ) class Meta: model = Adherent