~mhall119/summit/new-meeting-stuff

« back to all changes in this revision

Viewing changes to summit/schedule/models/summitmodel.py

  • Committer: Tarmac
  • Author(s): Chris Johnston
  • Date: 2012-01-31 22:00:42 UTC
  • mfrom: (280.1.1 url)
  • Revision ID: tarmac@nigelb.me-20120131220042-htdwdm5d34oialvm
[r=alanbell,mhall119] Fixes the issue where etherpad SSO breaks summit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
    title = models.CharField(max_length=100)
76
76
    location = models.CharField(max_length=100, blank=True)
77
77
    description = models.TextField(max_length=2047, blank=True)
78
 
    etherpad = models.URLField(max_length=75, blank=False, default='http://pad.ubuntu.com/', help_text="Enter the URL of the etherpad server you would like to use")
 
78
    etherpad = models.URLField(verify_exists=False, max_length=75, blank=False, default='http://pad.ubuntu.com/', help_text="Enter the URL of the etherpad server you would like to use")
79
79
    hashtag = models.CharField(max_length=25, blank=True)
80
80
    timezone = models.CharField(max_length=50,
81
81
                                choices=[(x, x) for x in pytz.common_timezones])