django date filter parameters code example
Example 1: filter with different operator in django
from myapp.models import Entry
from django.db.models import Q
Entry.objects.filter(~Q(id=3))
#will return all entries except the one(s) with 3 as their ID
Example 2: filter field set in django formds
from django.contrib.auth.decorators import login_required
@login_required
def agregar_producto(request):