コード例 #1
0
ファイル: models.py プロジェクト: hanleybrand/django-courses
 def get_all_abbrs(self):
     return DEPT_ABBRS.get(self.abbr, [self.abbr])
コード例 #2
0
ファイル: models.py プロジェクト: hanleybrand/django-courses
 def get_nice_abbr(abbr):
     """ replaces COMPSCI (correct abbreviation) with CS (common abbreviation) and the like """
     return DEPT_ABBRS.get(abbr.upper(), (abbr.upper(),))[0]