Ignore:
Timestamp:
26 Apr 2011, 20:08:25 (14 years ago)
Author:
Henrik Bettermann
Message:

Add more vocabularies.

File:
1 edited

Legend:

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

    r5977 r5986  
     1"""Vocabularies and sources for the academics section.
     2"""
     3
    14from waeup.sirp.interfaces import SimpleWAeUPVocabulary
    25from zc.sourcefactory.basic import BasicSourceFactory
     
    912                                   
    1013course_levels = SimpleWAeUPVocabulary(
    11               ('Year 1 (100)',100),
    12               ('Year 2 (200)',200),
    13               ('Year 3 (300)',300),
    14               ('Year 4 (400)',400),
    15               ('Year 5 (500)',500),
    16               ('Year 6 (600)',600),
    17               ('Year 7 (700)',700),
    18               ('Year 8 (800)',800),
     14              ('100 (Year 1)',100),
     15              ('200 (Year 2)',200),
     16              ('300 (Year 3)',300),
     17              ('400 (Year 4)',400),
     18              ('500 (Year 5)',500),
     19              ('600 (Year 6)',600),
     20              ('700 (Year 7)',700),
     21              ('800 (Year 8)',800),
    1922              )
    2023             
    2124semester = SimpleWAeUPVocabulary(
    22             ('N/A', 0), ('First Semester', 1),
    23             ('Second Semester', 2), ('Combined', 3))             
    24              
     25            ('N/A', 0),
     26            ('First Semester', 1),
     27            ('Second Semester', 2),
     28            ('Combined', 3)
     29            )     
     30           
     31application_category = SimpleWAeUPVocabulary(
     32            ('--',''),
     33            ('PUME, PDE, PCE, PRENCE','basic'),
     34            ('Part-Time, Diploma, Certificate','cest'),
     35            ('Sandwich','sandwich'),
     36            ('Postgraduate','pg'),
     37            )
     38           
     39study_mode = SimpleWAeUPVocabulary(
     40            ('UME Full Time','ume_ft'),
     41            ('Direct Entry Full Time','de_ft'),
     42            ('Diploma Full Time','dp_ft'),
     43            ('Diploma Part Time','dp_pt'),
     44            ('Undergraduate Full Time','ug_ft'),
     45            ('Undergraduate Part Time','ug_pt'),
     46            ('Postgraduate Full Time','pg_ft'),
     47            ('Postgraduate Part Time','pg_pt'),
     48            )       
     49           
     50
    2551class CourseSource(BasicSourceFactory):
    2652    """A course source delivers all courses inside the portal by looking
Note: See TracChangeset for help on using the changeset viewer.