Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

handle queries in ListView django

class ProfileList(ListView):
    template_name = 'your_template.html'
    model = Profile

    def get_queryset(self):
        query = self.request.GET.get('q')
        if query:
            object_list = self.model.objects.filter(name__icontains=query)
        else:
            object_list = self.model.objects.none()
        return object_list
Comment

PREVIOUS NEXT
Code Example
Python :: how to detect if the space button is pressed in pygame 
Python :: python is float 
Python :: csrf token fetch django 
Python :: how to rotate image in pygame 
Python :: python convert exponential to int 
Python :: create an environment in conda 
Python :: flask validate method 
Python :: sqlite check if table exists 
Python :: how to sum only the even values in python 
Python :: import pil pycharm 
Python :: how to find outliers in python 
Python :: how to read excel with multiple pages on pandas 
Python :: randomly choose between two numbers python 
Python :: how to install whl file in python 
Python :: pi python 
Python :: how to read numbers from a text file in python 
Python :: how to import include in django 
Python :: python recursive sum of digit 
Python :: plot sphere in matplotlib 
Python :: python logger get level 
Python :: pyspark split dataframe by rows 
Python :: numpy count occurrences in array 
Python :: where is tensorflow slim 
Python :: smallest program to make diamond python 
Python :: count unique values pandas 
Python :: python get stock prices 
Python :: stop program python 
Python :: sort a stack using recursion 
Python :: python reserved keywords 
Python :: else if in django template 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =