0
votes
0answers
32 views

Generating html pages with mustache in a python CGI script

I need to deploy a static website to a host that allows ssh access and python scripts (via CGI). So far I used local generated html content with the help of mustache. So far so good. Now different ...
0
votes
1answer
80 views

UnicodeDecodeError with pystache/mustache

I'm trying to write some data to a file using pystache. The data comes from a csv file which was exported from a google docs spreadsheet. When writing the file using the pystache template I'm getting ...
2
votes
0answers
130 views

Mustache: referring to elements in nested list iterations

I was wondering whether there is a way to explicitly refer to elements in a nested list iteration in Pystache. More specifically, I have two lists: xs = [x1,x2] ys = [y1,y2,y3] When iterating over ...
3
votes
2answers
399 views

How to integrate pystache with pyramid?

I would like to use the class based views that pystache offers in my pyramid application, but I'm not entirely sure how to integrate the two properly. I've read this already, but it doesn't talk about ...
1
vote
2answers
421 views

Rendering a big file with pystache

This is what I usually do to render a file with pystache: txt = open(filename, 'r').read() print pystache.render(txt, context).encode('utf-8') ("context" is my mapping) But now I have to render ...
1
vote
1answer
137 views

How can I change the templating framework in Django?

I want to integrate Mustache into my Django app. What steps would I need to take to completely replace Django's templating system with Mustache? I would like to have render_to_response work properly ...
2
votes
1answer
552 views

How to handle nested context?

I wanted to use nested dictionaries in Mustache, section Non-False Values in Mustache manual suggests it's possible and presents the following example: Template: {{#person?}} Hi {{name}}! ...
2
votes
1answer
179 views

StringIO and pystache generate spurious null bytes

I am parsing a mustache file into a string, and after that I want to process that string with the csv module. For that I generate a file like interface to the string using StringIO. The csv module is ...
2
votes
3answers
667 views

How to change the template engine in Pyramid?

In particular I want to use pystache but any guide for another template engine should be good enough to set it up. If I understood correctly, I have to register the renderer factory in the ...
17
votes
7answers
4k views

Can Mustache Templates do template extension?

I'm new to Mustache. Many templating languages (e.g., Django / Jinja) will let you extend a "parent" template like so... base.html <html><head></head> <body> {% ...
3
votes
1answer
574 views

how to integrate pystache with web.py

Now, I use pystache in web.py in this way: render = render_pystache('templates_dir') class index: def GET(self): render.var('name', 'jim') return render.simple() ...