Run preparations (parsing, caching, ...). It should be possible to call this again to refresh a template or to update settings.
(self, **options)
| 3265 | return cls.settings[key] |
| 3266 | |
| 3267 | def prepare(self, **options): |
| 3268 | """ Run preparations (parsing, caching, ...). |
| 3269 | It should be possible to call this again to refresh a template or to |
| 3270 | update settings. |
| 3271 | """ |
| 3272 | raise NotImplementedError |
| 3273 | |
| 3274 | def render(self, *args, **kwargs): |
| 3275 | """ Render the template with the specified local variables and return |