Allows the addition of more context variables as needed. Must return a dictionary.
(self)
| 117 | return (paginator, page) |
| 118 | |
| 119 | def extra_context(self): |
| 120 | """ |
| 121 | Allows the addition of more context variables as needed. |
| 122 | |
| 123 | Must return a dictionary. |
| 124 | """ |
| 125 | return {} |
| 126 | |
| 127 | def get_context(self): |
| 128 | paginator, page = self.build_page() |
no outgoing calls
no test coverage detected