Posts by cookie55 • 9 points
2 posts
-
-1
votes1
answer74
viewsQ: How to page a search page in Django?
Hello, I am trying to paginate the results of a search page on Django, but without success. A class based view is responsible: class SearchResultsView(ListView): model = User paginate_by = 2…
-
0
votes3
answers78
viewsQ: Insert a list into a database made with Django
Hello, I want to insert a list of names in a database I created with Django, but I’m not getting it. Is there a method to enter all names at once? (NOTE. I have already performed the makemigrations…