コード例 #1
0
ファイル: forms.py プロジェクト: kriberg/eve-armada
 def clean_location(self):
     name = self.cleaned_data['location']
     try:
         get_location_id(name)
         return name
     except:
         raise ValidationError('Location does not exist.')
コード例 #2
0
ファイル: models.py プロジェクト: kriberg/eve-armada
 def get_location_id(self):
     return get_location_id(self.location)