(self, **kwargs)
| 215 | ordering = ['-added'] |
| 216 | |
| 217 | def get_context_data(self, **kwargs): |
| 218 | return { |
| 219 | **super().get_context_data(**kwargs), |
| 220 | 'VERSION': VERSION, |
| 221 | 'COMMIT_HASH': COMMIT_HASH, |
| 222 | 'FOOTER_INFO': FOOTER_INFO, |
| 223 | } |
| 224 | |
| 225 | def get_queryset(self, **kwargs): |
| 226 | qs = super().get_queryset(**kwargs) |
nothing calls this directly
no test coverage detected