예제 #1
0
파일: coffee.py 프로젝트: nisc/django-cafe
 def __init__(self, files):
     self.compiler = Compiler(files)
예제 #2
0
파일: coffee.py 프로젝트: nisc/django-cafe
class CoffeeNode(template.Node):
    def __init__(self, files):
        self.compiler = Compiler(files)

    def render(self, context):
        return self.compiler.compile()