0
votes
9answers
472 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 ?
0
votes
1answer
44 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 out …
2
votes
1answer
51 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 …
0
votes
1answer
48 views
jinja2: html escape variables
how do I html-escape dangerous unsanitized input in jinja2?
Can I do it inside the template or must it be done in python code?
I have a variable that may contain da<ngero>u …
0
votes
0answers
38 views
How create jinja2 extension?
I try to make extension for jinja2. I has written such code:
http://dumpz.org/12996/
But I receive exception: "'NoneType' object is not iterable"
Where is a bug?
That should retu …
0
votes
2answers
52 views
jinja2: get lengths of list
How do I get the number of elements in a list in jinja2 template.
For example, in python:
print template.render(products=[???])
and in jinja2
<span>You have {{what goes …
0
votes
1answer
64 views
vim syntax highlighting for jinja2?
How do you do jinja2 aware syntax highlighting for vim?
1
vote
1answer
45 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&g …
0
votes
1answer
49 views
How do you mark strings as “Safe” in a view (ot the template) in Jinja2?
Typically when you want to mark string output as safe in Jinja2 you do something like this:
{{ output_string|safe() }}
However, what if output_string is always safe? I don't wan …
0
votes
1answer
44 views
Multiple blocks of same name in Jinja2
In Jinja2, I have a base template like this:
<title>{% block title %}{% endblock %} - example.com</title>
[...]
<h1>
{% block title %}{% endblock %} - exampl …
2
votes
3answers
563 views
Context processor using Werkzeug and Jinja2
My application is running on AppEngine and is implemented using Werkzeug and Jinja2. I'd like to have something functionally equivalent of Django's own context processor: a callabl …
2
votes
3answers
412 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 cre …
0
votes
3answers
169 views
Python: Running all unit tests inside a package
I'm trying to hack my through an open source python project (namely: jinja2),
When I say "I'm hacking my way through", I mean I don't really know what I'm doing, so I want to run …
3
votes
4answers
661 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 us …
1
vote
1answer
87 views
How can I create a tag in Jinja that contains values from later in the template?
I'm using Jinja2, and I'm trying to create a couple tags that work together, such that if I have a template that looks something like this:
{{ my_summary() }}
... arbitrary HTML . …
