You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I drag I got this error.
response = receiver(signal=self, sender=sender, **named)
TypeError: fallback_pre_save() takes exactly 5 arguments (3 given)
class MyModel(models.Model):
class Meta:
ordering = ('order', )
image = models.ImageField('Front images', upload_to=upload_images)
description = models.CharField(max_length=200)
order = models.PositiveSmallIntegerField(default=0)
class MyModelAdmin(SortableAdminMixin, admin.ModelAdmin):
list_display = ('id', 'image', 'description', )
admin.site.register(MyModel, MyModelAdmin)
The text was updated successfully, but these errors were encountered:
When I drag I got this error.
response = receiver(signal=self, sender=sender, **named)
TypeError: fallback_pre_save() takes exactly 5 arguments (3 given)
The text was updated successfully, but these errors were encountered: