AO
Size: a a a
AO
A
S
R
S
S
A
V💊
document.ready
S
S
posts = Post.objects.get(table_platform__icontains='BetSoft')
django.core.exceptions.FieldError: Related Field got invalid lookup: icontains
class Post(models.Model):
table_platform = models.ManyToManyField('Platform', blank=True)
class Platform(models.Model):
title = models.CharField(max_length=300, unique=True)
S
🔐
posts = Post.objects.get(table_platform__icontains='BetSoft')
django.core.exceptions.FieldError: Related Field got invalid lookup: icontains
class Post(models.Model):
table_platform = models.ManyToManyField('Platform', blank=True)
class Platform(models.Model):
title = models.CharField(max_length=300, unique=True)
S
🔐
posts = Post.objects.get(table_platform__icontains='BetSoft')
django.core.exceptions.FieldError: Related Field got invalid lookup: icontains
class Post(models.Model):
table_platform = models.ManyToManyField('Platform', blank=True)
class Platform(models.Model):
title = models.CharField(max_length=300, unique=True)
🔐
S
V💊
posts = Post.objects.get(table_platform__icontains='BetSoft')
django.core.exceptions.FieldError: Related Field got invalid lookup: icontains
class Post(models.Model):
table_platform = models.ManyToManyField('Platform', blank=True)
class Platform(models.Model):
title = models.CharField(max_length=300, unique=True)
S
blog.models.Post.DoesNotExist: Post matching query does not exist.
S
🔐
blog.models.Post.DoesNotExist: Post matching query does not exist.