(self, **kwargs)
| 118 | paginate_by = PAGE_SIZE |
| 119 | |
| 120 | def get_context_data(self, **kwargs): |
| 121 | context = super().get_context_data(**kwargs) |
| 122 | request_query = self.request.GET |
| 123 | context["package_search_form"] = PackageSearchForm(request_query) |
| 124 | context["search"] = request_query.get("search") |
| 125 | return context |
| 126 | |
| 127 | def get_queryset(self, query=None): |
| 128 | """ |
no test coverage detected