This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
cmsplugin-blurp/src/cmsplugin_blurp/renderers/static.py

9 lines
246 B
Python

from .template import TemplateRenderer
class Renderer(TemplateRenderer):
'''Directly pass the config object to the template'''
def render(self, context, instance, placeholder):
context.update(self.config)
return context