django queryset get name code example
Example 1: django model query join
Blog.objects.filter(entry__headline__contains='Lennon').filter(entry__pub_date__year=2008)
Example 2: create django object
Author.objects.create(name="Joe")
Blog.objects.filter(entry__headline__contains='Lennon').filter(entry__pub_date__year=2008)
Author.objects.create(name="Joe")