Run preparations (parsing, caching, ...). It should be possible to call this again to refresh a template or to update settings.
(self, **options)
| 4249 | return cls.settings[key] |
| 4250 | |
| 4251 | def prepare(self, **options): |
| 4252 | """ Run preparations (parsing, caching, ...). |
| 4253 | It should be possible to call this again to refresh a template or to |
| 4254 | update settings. |
| 4255 | """ |
| 4256 | raise NotImplementedError |
| 4257 | |
| 4258 | def render(self, *args, **kwargs): |
| 4259 | """ Render the template with the specified local variables and return |