(self)
| 105 | return context |
| 106 | |
| 107 | def get_queryset(self): |
| 108 | qs = super().get_queryset() |
| 109 | for field in self.facet_fields: |
| 110 | qs = qs.facet(field) |
| 111 | |
| 112 | if self.date_facet_fields: |
| 113 | for field in self.date_facet_fields: |
| 114 | qs = qs.date_facet(**field) |
| 115 | |
| 116 | return qs |
| 117 | |
| 118 | |
| 119 | class SearchView(SearchMixin, FormView): |
nothing calls this directly
no test coverage detected