How-to articles, tricks, and solutions about DJANGO-MODELS
How do I do a not equal in Django queryset filtering?
You can use the exclude() method to filter out records where a certain field is not equal to a certain value.
What is the difference between null=True and blank=True in Django?
In Django, null=True and blank=True are both used to specify options for fields in a model.