Fix absolute URLs, 'Sydney' on the speaker create form

Fix !87
This commit is contained in:
William Hughes 2018-06-30 11:41:37 +12:00
parent 8c28ca0f79
commit 128148ba20

View file

@ -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 "
"<a href=\"https://linux.conf.au/attend/terms-and-conditions\"> "
"<a href=\"/attend/terms-and-conditions\"> "
"terms and conditions of attendance</a>, and I have read, "
"understood, and agree to act according to the standards set "
"forth in our "
"<a href=\"https://linux.conf.au/attend/code-of-conduct\">"
"<a href=\"/attend/code-of-conduct\">"
"Code of Conduct</a>.")
)