From 128148ba20a6757d231bcdbb26548b1afe6ee3d7 2018-06-29 23:41:37 From: William Hughes Date: 2018-06-29 23:41:37 Subject: [PATCH] Fix absolute URLs, 'Sydney' on the speaker create form Fix !87 --- diff --git a/vendor/symposion/speakers/models.py b/vendor/symposion/speakers/models.py index 87129ef7d9bcc7b04802607b3119291943391297..c2fc0f251c8c92e13722e78b1e970af46d69c2dd 100644 --- a/vendor/symposion/speakers/models.py +++ b/vendor/symposion/speakers/models.py @@ -66,7 +66,7 @@ class Speaker(models.Model): travel_assistance = models.BooleanField( blank=True, default=False, - help_text=_("Check this box if you require assistance to travel to Sydney to " + help_text=_("Check this box if you require assistance to travel to Christchurch to " "present your proposed sessions."), verbose_name=_("Travel assistance required"), ) @@ -80,11 +80,11 @@ class Speaker(models.Model): agreement = models.BooleanField( default=False, help_text=_("I agree to the " - " " + " " "terms and conditions of attendance, and I have read, " "understood, and agree to act according to the standards set " "forth in our " - "" + "" "Code of Conduct.") )