From f64a7573d3e798c87c7ec3601e7335cc2b33a3b4 Mon Sep 17 00:00:00 2001
From: Christopher Neugebauer <chrisjrn@gmail.com>
Date: Sat, 18 Jun 2016 16:50:11 +1000
Subject: [PATCH] =?UTF-8?q?-=20Adds=20defaults=20to=20the=20speaker=20prof?=
 =?UTF-8?q?ile=20-=20Removes=20=E2=80=9Cexperience=E2=80=9D,=20as=20this?=
 =?UTF-8?q?=20is=20listed=20in=20=E2=80=9Cother=20notes=E2=80=9D=20on=20a?=
 =?UTF-8?q?=20per-proposal=20basis.?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 symposion/speakers/models.py | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/symposion/speakers/models.py b/symposion/speakers/models.py
index 77d48d9b..a3542e8a 100644
--- a/symposion/speakers/models.py
+++ b/symposion/speakers/models.py
@@ -35,22 +35,20 @@ class Speaker(models.Model):
         blank=True,
         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(
         blank=True,
         help_text=_("Please describe any special accessibility requirements that you may have."),
         verbose_name=_("Accessibility requirements"))
     travel_assistance = models.BooleanField(
         blank=True,
+        default=False,
         help_text=_("Check this box if you require assistance to travel to Hobart to "
                     "present your proposed sessions."),
         verbose_name=_("Travel assistance required"),
     )
     accommodation_assistance = models.BooleanField(
         blank=True,
+        default=False,
         help_text=_("Check this box if you require us to provide you with student-style "
                     "accommodation in order to present your proposed sessions."),
         verbose_name=_("Accommodation assistance required"),