Fetches the results via the form. Returns an empty list if there's no query to search with.
(self)
| 81 | return "" |
| 82 | |
| 83 | def get_results(self): |
| 84 | """ |
| 85 | Fetches the results via the form. |
| 86 | |
| 87 | Returns an empty list if there's no query to search with. |
| 88 | """ |
| 89 | return self.form.search() |
| 90 | |
| 91 | def build_page(self): |
| 92 | """ |