Tagged Questions

jinja2 is a fast, full-featured template engine for Python.

learn more… | top users | synonyms

21
votes
9answers
7k views

What is the fastest template system for Python?

Jinja2 and Mako are both apparently pretty fast. How do these compare to (the less featured but probably good enough for what I'm doing) string.Template ?
20
votes
2answers
2k views

How do you debug Mako templates?

So far I've found it impossible to produce usable tracebacks when Mako templates aren't coded correctly. Is there any way to debug templates besides iterating for every line of code?
17
votes
7answers
4k views

Any drawbacks or gotchas to using Jinja2 templates in Django?

After reading the Jinja2 documentation, I'm interested in employing it in future Django projects. However, I'm wondering if anyone has encountered any drawbacks or gotchas when using Jinja2 templates ...
16
votes
5answers
1k views

Debug Jinja2 in Google App Engine

When I'm running Jinja2 in Google App Engine, I get useless debugging information. I gather this is because of this item in the FAQ: My tracebacks look weird. What’s happening? If the ...
15
votes
2answers
2k views

Python: How do I format a date in Jinja2?

Using Jinja2, how do I format a date field? I know in Python I can simply do this: print car.date_of_manufacture.strftime('%Y-%m-%d') But how do I format the date in Jinja2? Thanks.
15
votes
3answers
4k views

Mako or Jinja2?

I didn't find a good comparison of jinja2 and Mako. What would you use for what tasks ? I personnaly was satisfied by mako (in a pylons web app context) but am curious to know if jinja2 has some ...
9
votes
2answers
2k views

Jinja2 in Google App Engine

I have started using Jinja2 as my templating engine on Google App Engine (in Python). My question is this: Will bytecode caching work in production? It is working very well on the development server, ...
8
votes
2answers
153 views

How to code jQuery more modularly?

I'm using a framework (Django) and I have a lot of flexibility in how I write HTML. I keep thinking that the way I'm writing jQuery could be better. Take this for example: mostly anywhere a submit ...
6
votes
1answer
238 views

Flask - Accessing the config variable in the template

I am using Flask version 0.7. I have stored the path of static content in a configuration file and loaded it using app.config.from_envvar(<file_name>) Can I be able to access this config ...
6
votes
1answer
456 views

webapp2 + jinja2: How can i get uri_for() working in jinja2-views

How can i add pass Model-Specific urls to the Template. Let's say, i want to build an edit-link. I would guess, using the uri_for() function would be an easy approach. But the following gives me ...
6
votes
1answer
254 views

Help with custom Jinja2 Extension

I've struggled to get this Jinja2 custom extension to work -- the docs weren't kidding when they said writing one was not for "civilians" -- and finally managed to arrive at this working code: class ...
6
votes
2answers
743 views

Django: Switching to Jinja2?

I've got a couple small (500 or 600 lines of template code) Django sites, and I'd like to migrate them to using Jinja2… But I'd like to get some idea of how much work it will be. So, in general, about ...
6
votes
1answer
837 views

jinja2: get loop index of outer loop

In jinja, the variable loop.index holds the iteration number of the current running loop. When I have nested loops, how can I get in the inner loop the current iteration of an outer loop?
5
votes
1answer
256 views

i18n with jinja2 + GAE

I googled for a GAE + jinja i18n example but could not find it. Can anyone provide a link or working example? My effort uses the django translations and I don't know if this is the recommend way of ...
5
votes
2answers
149 views

How to organize code for a Flask application with multiple set of templates

I'm writing an application with Flask and I'd like to generate different code for desktop and mobile browsers. IMHO it should be a good idea to keep the application code identical and push the problem ...
5
votes
1answer
67 views

Jquery XHR which results in a dom change that persists through refreshes, etc

This is more of a design question than technical, but it has me completely stumped. So, I have a webpage (hosted via google app engine) that lists a number of seperate forms (each is a ...
5
votes
3answers
1k views

Python template engines: Chameleon vs Jinja2

Has anyone here done any benchmarking of Chameleon versus Jinja2, in respect to performance? I'm more used to the Jinja syntax, since I come from Django, but as Pyramid suggests to use Chameleon, I'm ...
5
votes
3answers
635 views

How can I make a simple counter with Jinja2 templates?

I have two for loops, both alike in dignity. I'd like to have a counter incremented during each inner iteration. For example, consider this template: from jinja2 import Template print Template(""" ...
5
votes
3answers
1k views

Optimizing Jinja2 Environment creation

My application is running on Google App Engine and most of requests constantly gets yellow flag due to high CPU usage. Using profiler I tracked the issue down to the routine of creating ...
4
votes
1answer
436 views

{% spaceless %} tag for Jinja templates?

Django has a useful {% spaceless %} tag that strips extra whitespace from HTML. My templates are producing a lot of whitespace and it's too much of a pain to add the {%- and -%} everywhere to do ...
4
votes
2answers
684 views

Can a Jinja variable's scope extend beyond in an inner block?

I have the following Jinja template: {% set mybool = False %} {% for thing in things %} <div class='indent1'> <ul> {% if current_user %} {% if ...
4
votes
1answer
2k views

First templating project in jinja - where do you store the variables?

I've got five pages with the same page layout and structure, but some different colors, text, etc, so this is an ideal environment for templating. I've decided to use Jinja2 and probably flask. I've ...
4
votes
2answers
937 views

Insert javascript at top of including file in Jinja 2

In Jinja2, I would like the following to work as it looks like it should, by running: from jinja2 import Environment, FileSystemLoader env = Environment(loader=FileSystemLoader('.')) template = ...
4
votes
2answers
1k views

Strip whitespace in generated HTML using pure Python code

I am using Jinja2 to generate HTML files which are typically very huge in size. I noticed that the generated HTML had a lot of whitespace. Is there a pure-Python tool that I can use to minimize this ...
4
votes
1answer
587 views

How does the Jinja2 “recursive” tag actually work?

I'm trying to write a very simple, tree-walking template in jinja2, using some custom objects with overloaded special methods (getattr, getitem, etc) It seems straightforward, and the equivalent ...
4
votes
1answer
692 views

vim syntax highlighting for jinja2?

How do you do jinja2 aware syntax highlighting for vim?
3
votes
0answers
63 views

How to localize my wtform?

I have a form that I want to localize from English to many languages. I can do it either with gettext or the datastore and I've chosen gettext for performance but I could also use the datastore to ...
3
votes
1answer
107 views

Flask + Jinja2: how to measure performances

I need to compare the performances of a Flask application that uses jinja2.Template.render against jinja2.Template.stream to be sure that there is no loss of performances using the streaming of ...
3
votes
1answer
102 views

How does one omit the closing slash on <input> elements using WTForms?

I've been noticing that WTForms (and Flask-WTF) output <input> elements with a closing slash like so: <input name="text" type="text" value="" /> My documents are HTML5 and therefore need ...
3
votes
2answers
224 views

How to do nested comments in Flask/Jinja?

Like the comments in Hacker News and Reddit. I've looked at Jinja's docs but I can't find anything about recursion (which I assume is how this sort of thing is done). Any ideas? Thanks in advance. ...
3
votes
1answer
242 views

Dynamic use of templates in Jinja2

I have to following scenario: a python list of python dictionaries l = [a,b,c,...,n] each element of the list is a python dictionary that looks something like this: d = {} d['type'] = 5 d['content'] ...
3
votes
3answers
261 views

What are the secured template engines in Java?

I'm looking for a template engine in Java that disallow code execution in template, only tags. In a perfect world, I would be searching for an equivalent to Jinja2 (or the Django template engine). ...
3
votes
2answers
401 views

Call a python function from jinja2

I am using jinja2, and I want to call a python function as a helper, using a similar syntax as if I were calling a macro. jinja2 seems intent on preventing me from making a function call, and insists ...
3
votes
2answers
164 views

zip(list1, list2) in Jinja2?

I'm doing code generation in Jinja2 and I frequently want to iterate through two lists together (i.e. variables names and types), is there a simple way to do this or do I need to just pass a ...
3
votes
1answer
418 views

problem with jinja2 autoescape in google app engine webapp

I decided to install jinja2 to use with my webapp application in order to support the autoescape functionality. So I installed jinja2 into python 2.5 and created a symlink within my project to point ...
3
votes
1answer
169 views

Jinja2 compile extension after includes

In Jinja2, is it possible to have a Node from the AST render after all include statements have completed? This is a key piece of a solution to a bigger puzzle. Example code: x.py from jinja2 ...
3
votes
2answers
751 views

How to get a list of current variables from Jinja 2 template?

If I return a Jinja2 template like so: return render_response('home.htm', **context) How do then get a list of the variables in context from within the template?
3
votes
2answers
459 views

Does the Jinja2 templating language have the concept of 'here' (current directory)?

Does Jinja2 support template-relative paths e.g. %(here)s/other/template.html, to include other templates relative to the current template's place in the filesystem?
3
votes
2answers
399 views

Jinja-like for Pdf in Python

I am looking for the best accurate tool for PDF in Python that works like Jinja do for HTML. What are your suggestions?
3
votes
2answers
892 views

How to debug Jinja2 template?

I am using jinja2 template system into django. It is really fast and I like it a lot. Nevertheless, I have some problem to debug templates : If I make some errors into a template (bad tag, bad ...
3
votes
2answers
485 views

How do you sort a list in Jinja2?

I am trying to do this: {% for movie in movie_list | sort(movie.rating) %} But that's not right...the documentation is vague...how do you do this in Jinja2?
3
votes
1answer
591 views

Jinja2 If Statement

The code below is a sample form I'm using to learn jinja2. As written, it returns an error saying that it doesn't recognize the {% endif %} tag. Why does this happen? <html> Name: {{ name }} ...
3
votes
2answers
2k views

Context processor using Werkzeug and Jinja2

My application is running on App Engine and is implemented using Werkzeug and Jinja2. I'd like to have something functionally equivalent of Django's own context processor: a callable that takes a ...
2
votes
1answer
57 views

How to not import django here?

I have filter that I took from django but now I must import too much of django which I don't want and I must put the strange line in my file: os.environ['DJANGO_SETTINGS_MODULE'] = 'locale' This ...
2
votes
1answer
44 views

Jinja's loop variable is not available in include-d templates

I have code similar to the following in one of my jinja template {% for post in posts %} {% include ["posts/" + post.type + ".html", "posts/default.html"] %} {% endfor %} which is supposed to ...
2
votes
2answers
71 views

Get translatable text from an external source into catalog

Possibly i am overlooking an obvious solution or thinking the wrong way... I have a limited amount of text, words in a database, that I want to display translated to users in a flask/jinja/babel ...
2
votes
1answer
110 views

How to go about internationalization?

I'm building a web application that will be in a single language (Dutch) at launch. However, at some point it might be translated to other languages as well, which is why I want to have ...
2
votes
2answers
255 views

jinja2 recursive loop vs dictionary

I have the following dictionary: {'a': {'b': {'c': {}}}} And the following Jinja2 template: {% for key in dictionary recursive %} <li>{{ key }} {% if ...
2
votes
0answers
56 views

jinja2 not loading on app engine dev_server [closed]

Possible Duplicate: Can't load jinja2 with webapp2/Google App Engine the python 2.7 runtime of google app engine contains jinja2. I'm converting all my webapp.template code to jinja2 ...
2
votes
1answer
61 views

CherryPy + Jinja, where to initialize Environment

I'm writing an application in python using CherryPy and Jinja as the template system. May be needed to say that i'm a beginner with these tools. The problem I'm facing now is I cannot figure where to ...

1 2 3 4 5