mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 14:13:21 +00:00
Clean up some useless prints
This commit is contained in:
parent
7a2985b186
commit
37072e1640
@ -221,7 +221,6 @@ class OperationForm(forms.ModelForm):
|
|||||||
|
|
||||||
def clean(self):
|
def clean(self):
|
||||||
self.cleaned_data = super(OperationForm, self).clean()
|
self.cleaned_data = super(OperationForm, self).clean()
|
||||||
print(self.errors)
|
|
||||||
if self.cleaned_data['target_type'] == "USER":
|
if self.cleaned_data['target_type'] == "USER":
|
||||||
self.cleaned_data['target_id'] = self.cleaned_data['user'].id
|
self.cleaned_data['target_id'] = self.cleaned_data['user'].id
|
||||||
elif self.cleaned_data['target_type'] == "ACCOUNT":
|
elif self.cleaned_data['target_type'] == "ACCOUNT":
|
||||||
|
@ -273,7 +273,6 @@ class UserUploadProfilePictView(CanEditMixin, DetailView):
|
|||||||
self.object = self.get_object()
|
self.object = self.get_object()
|
||||||
if self.object.profile_pict:
|
if self.object.profile_pict:
|
||||||
raise ValidationError(_("User already has a profile picture"))
|
raise ValidationError(_("User already has a profile picture"))
|
||||||
print(request.FILES['new_profile_pict'])
|
|
||||||
f = request.FILES['new_profile_pict']
|
f = request.FILES['new_profile_pict']
|
||||||
parent = SithFile.objects.filter(parent=None, name="profiles").first()
|
parent = SithFile.objects.filter(parent=None, name="profiles").first()
|
||||||
name = str(self.object.id) + "_profile.jpg" # Webcamejs uploads JPGs
|
name = str(self.object.id) + "_profile.jpg" # Webcamejs uploads JPGs
|
||||||
|
Loading…
Reference in New Issue
Block a user