(self, **kwargs)
| 205 | return catalog |
| 206 | |
| 207 | def get_context_data(self, **kwargs): |
| 208 | return { |
| 209 | "catalog": self.get_catalog(), |
| 210 | "formats": get_formats(), |
| 211 | "plural": self.get_plural(), |
| 212 | } |
| 213 | |
| 214 | def render_to_response(self, context, **response_kwargs): |
| 215 | def indent(s): |
no test coverage detected