Ignore:
Timestamp:
27 Jan 2012, 17:14:38 (13 years ago)
Author:
Henrik Bettermann
Message:

Add nationality vocab.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/students/vocabularies.py

    r7321 r7523  
    2727from waeup.sirp.interfaces import SimpleSIRPVocabulary
    2828from waeup.sirp.students.lgas import LGAS
     29from waeup.sirp.students.nats import NATS
    2930from waeup.sirp.university.vocabularies import course_levels
    3031
    3132lgas_vocab = SimpleSIRPVocabulary(
    3233    *sorted([(x[1],x[0]) for x in LGAS]))
     34
     35nats_vocab = SimpleSIRPVocabulary(
     36    *sorted([(x[1],x[0]) for x in NATS]))
    3337
    3438def study_levels(studycourse):
Note: See TracChangeset for help on using the changeset viewer.