(self, **kwargs)
| 205 | paginate_by = PAGE_SIZE |
| 206 | |
| 207 | def get_context_data(self, **kwargs): |
| 208 | context = super().get_context_data(**kwargs) |
| 209 | request_query = self.request.GET |
| 210 | context["package_search_form"] = PackageSearchForm(request_query) |
| 211 | context["search"] = request_query.get("search") |
| 212 | return context |
| 213 | |
| 214 | def get_queryset(self, query=None): |
| 215 | """ |
nothing calls this directly
no test coverage detected