- Adds defaults to the speaker profile
- Removes “experience”, as this is listed in “other notes” on a per-proposal basis.
This commit is contained in:
parent
217f2f32c1
commit
f64a7573d3
1 changed files with 2 additions and 4 deletions
|
@ -35,22 +35,20 @@ class Speaker(models.Model):
|
||||||
blank=True,
|
blank=True,
|
||||||
help_text=_(u"Your Twitter account")
|
help_text=_(u"Your Twitter account")
|
||||||
)
|
)
|
||||||
experience = models.TextField(
|
|
||||||
blank=True,
|
|
||||||
help_text=_("Please describe your past speaking experience, or expertise on your given topic."),
|
|
||||||
verbose_name=_("Experience"))
|
|
||||||
accessibility = models.TextField(
|
accessibility = models.TextField(
|
||||||
blank=True,
|
blank=True,
|
||||||
help_text=_("Please describe any special accessibility requirements that you may have."),
|
help_text=_("Please describe any special accessibility requirements that you may have."),
|
||||||
verbose_name=_("Accessibility requirements"))
|
verbose_name=_("Accessibility requirements"))
|
||||||
travel_assistance = models.BooleanField(
|
travel_assistance = models.BooleanField(
|
||||||
blank=True,
|
blank=True,
|
||||||
|
default=False,
|
||||||
help_text=_("Check this box if you require assistance to travel to Hobart to "
|
help_text=_("Check this box if you require assistance to travel to Hobart to "
|
||||||
"present your proposed sessions."),
|
"present your proposed sessions."),
|
||||||
verbose_name=_("Travel assistance required"),
|
verbose_name=_("Travel assistance required"),
|
||||||
)
|
)
|
||||||
accommodation_assistance = models.BooleanField(
|
accommodation_assistance = models.BooleanField(
|
||||||
blank=True,
|
blank=True,
|
||||||
|
default=False,
|
||||||
help_text=_("Check this box if you require us to provide you with student-style "
|
help_text=_("Check this box if you require us to provide you with student-style "
|
||||||
"accommodation in order to present your proposed sessions."),
|
"accommodation in order to present your proposed sessions."),
|
||||||
verbose_name=_("Accommodation assistance required"),
|
verbose_name=_("Accommodation assistance required"),
|
||||||
|
|
Loading…
Reference in a new issue