mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
Merge branch '220-do-not-fail-when-no-gtu' into 'dev'
Resolve "Do not fail when no GTU has been uploaded." See merge request federez/re2o!440
This commit is contained in:
commit
347cd8bf5d
1 changed files with 2 additions and 1 deletions
|
@ -409,10 +409,11 @@ class AdherentCreationForm(AdherentForm):
|
|||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(AdherentCreationForm, self).__init__(*args, **kwargs)
|
||||
gtu_file = GeneralOption.get_cached_value('GTU')
|
||||
self.fields['gtu_check'].label = mark_safe(
|
||||
"%s <a href='%s' download='CGU'>%s</a>." % (
|
||||
_("I commit to accept the"),
|
||||
GeneralOption.get_cached_value('GTU').url,
|
||||
gtu_file.url if gtu_file else "#",
|
||||
_("General Terms of Use")
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue