mirror of
https://github.com/ae-utbm/sith.git
synced 2025-08-23 17:40:00 +00:00
Fix error on accounting when no target_type specified
This commit is contained in:
@@ -304,6 +304,7 @@ class OperationForm(forms.ModelForm):
|
||||
|
||||
def clean(self):
|
||||
self.cleaned_data = super(OperationForm, self).clean()
|
||||
if 'target_type' in self.cleaned_data.keys():
|
||||
if self.cleaned_data['target_type'] == "USER":
|
||||
self.cleaned_data['target_id'] = self.cleaned_data['user'].id
|
||||
elif self.cleaned_data['target_type'] == "ACCOUNT":
|
||||
|
Reference in New Issue
Block a user