示例#1
0
 def clean_course_id(self):
     """
     Validate the course id
     """
     if self.cleaned_data['course_id']:
         return clean_course_id(self)
示例#2
0
文件: forms.py 项目: edx/edx-platform
 def clean_course_id(self):
     """
     Validate the course id
     """
     return clean_course_id(self)
示例#3
0
 def clean_course_id(self):
     """
     Validate the course id
     """
     return clean_course_id(self)
示例#4
0
 def clean_course_id(self):
     """
     Validate the course id
     """
     if self.cleaned_data['course_id']:
         return clean_course_id(self)