예제 #1
0
파일: forms.py 프로젝트: armisael/bandbook
 def clean_player(self):
     player = self.cleaned_data.get('player')
     action = site.get_by_id(self.cleaned_data['event_id'])
     if action.with_player and player is None:
         raise ValidationError(
             _('This field is required with the specified event'))
     return player
예제 #2
0
파일: models.py 프로젝트: armisael/bandbook
 def get_event(self):
     return site.get_by_id(self.event_id)