Skip to content

Commit

Permalink
Merge pull request openedx#482
Browse files Browse the repository at this point in the history
* rg/affiliation-options:
  Update affiliation values to CME's new list
  • Loading branch information
stvstnfrd committed Aug 3, 2016
2 parents f641351 + 5e0a733 commit 22820d6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions common/djangoapps/cme_registration/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,13 @@ class Meta:
specialty = models.CharField(blank=True, null=True, max_length=255, choices=SPECIALTY_CHOICES)
sub_specialty = models.CharField(blank=True, null=True, max_length=255)

AFFILIATION_CHOICES = (('Lucile Packard Children\'s Hospital Stanford', 'Lucile Packard Children\'s Hospital Stanford'),
AFFILIATION_CHOICES = (('Stanford Children\'s Health', 'Stanford Children\'s Health'),
('Packard Children\'s Health Alliance', 'Packard Children\'s Health Alliance'),
('Stanford Hospital and Clinics', 'Stanford Hospital and Clinics'),
('Stanford Health Care', 'Stanford Health Care'),
('Stanford University', 'Stanford University'),
('University Healthcare Alliance', 'University Healthcare Alliance'),
('Other', 'Other'))
('Other', 'Other'),
)
affiliation = models.CharField(blank=True, null=True, max_length=46, choices=AFFILIATION_CHOICES)
other_affiliation = models.CharField(blank=True, null=True, max_length=46)
sub_affiliation = models.CharField(blank=True, null=True, max_length=46)
Expand Down

0 comments on commit 22820d6

Please sign in to comment.