jinja2 is a fast, full-featured template engine for Python. It has full unicode support, an optional integrated sandboxed execution environment, widely used and BSD licensed. Use this tag for questions relating specifically to Jinja 2.
0
votes
1answer
15 views
Flask-WTForms: how to check if a field is required?
I defined a form in the following way:
class LoginForm(Form):
login = EmailField(u'Email address', [required(), length(min=5, max=2048), validators.Email()])
password = ...
0
votes
2answers
9 views
check variable type inside Jinja2 in Flask
The template file i created contains this:
{% if type({'a':1,'b':2}) is dict %}
print "Oh Yes!!"
{% else %}
print "Oh No!!!"
{% endif %}
Then Jinja2 responds by saying:
...
1
vote
0answers
27 views
Populate a WTForms form object with a datetime.date
I'm cooking up a crud interface for an object representing a bill, as in the water bill, the electric bill, etc.
I'm using sqlalchemy to handle the data, wtforms to handle the forms, and flask to ...
1
vote
0answers
25 views
Best way to use Jinja2 template in Javascript?
I'm trying to AJAXify some functionality of a page that uses Jinja2 and Flask. Problem is that I want the entire Jinja2 template to be rendered by Javascript but, this isn't possible with some of the ...
1
vote
1answer
29 views
Jinja2 extension multiple keyword arguments
I can not find how to pass multiple named arguments to jinja2 Extension.
I want something like that:
{% some_extension foo='foo' bar='bar' %}
data
{% end_someextension %}
1
vote
2answers
40 views
How to render lists of column values into a table using a template (such as Jinja2)
I am trying to do the following (doesn't work, just shown to convey the intended behavior):
<table>
<tr>
<th>Column 1</th>
<th>Column 2</th>
...
0
votes
2answers
19 views
How can I use a macro that is defined from a base template file
I have a structure of a template as follow:
"base.jinja2"
{% macro a_macro() %}
{# Something #}
{%- endmacro %}
{# Something #}
{% include "the_second_template.jinja2" %}
...
0
votes
1answer
30 views
Jinja2 template from Flask is failing to render CONTINUE statement
I am trying a simple continue inside a for-loop in Flask with jinja2
{% for num in range(0,10) %}
{% if num%2 == 0 %}
{% print num %}
{% else %}
{% continue %}
{% endif %}
and i get ...
0
votes
0answers
27 views
Converting timezone from UTC to IST in App Engine?
Question is related to Jinja2 templating system. But I want to explain the scenario:
According to the doc, App Engine always stores and returns datetime in UTC format. I am using
...
0
votes
0answers
14 views
Is there an equivalent of the “ifchanged” tag in Jinja2?
I am using jinja2 with my django application, I am working on porting some existing django templates over to jinja2. For the most part I am not having any issues; however, I have a statement like so ...
1
vote
1answer
28 views
Rendering a WTForms CheckboxInput in Jinja Template
I can't seem to figure out how to render a WTForms CheckboxInput in my template. When I try to render the field using Flask in my Jinja template I get this error:
TypeError: call() takes exactly 2 ...
0
votes
1answer
32 views
Please help me troubleshoot this search API issue
I want this output:
test
but instead I get this output
[search.TextField(name=u'comment', value=u'test')]
Can you tell me what is wrong?
The code is basically
{{scored_document.comment}}
That ...
-1
votes
1answer
18 views
What is the first argument to PackageLoader for in Python's jinja module [closed]
Okay so I have the following, I only want to know what "yourapplication" is. It's supposed to be a module, but a module that does what?
The website is down so there's currently no way I can look up ...
1
vote
1answer
47 views
Is it possible to load jinja2 templates without having variables replaced?
Suppose we have the following structure
templates/modal.html
<div class="title">
{% block title %}
{% endblock %}
</div>
<div class="content">
{% block content %}
{% ...
0
votes
1answer
41 views
In a jinja2 template, how do i check if an element in a mongo database is one of three possible strings?
My template has if/else functionality to handle displaying buttons on a page, I've managed to add an elif statement that displays the buttons only if an element in a mongo database is not one of three ...
2
votes
2answers
52 views
Disabled field is considered for validation in WTForms and Flask
I have some fields in page disabled as for example:(using jinja2 templating system)
<html>
<body>
<form action="" method=POST>
{{ form.name(disabled=True) }}
{{ form.title ...
0
votes
1answer
28 views
Flask MongoEngine queryset in templates
I am building a small application with Flask and mongoengine.
In a simple view I have:
@app.route('/course/<slug>/', methods=['GET', 'POST'])
def course_detail(slug):
course = ...
0
votes
2answers
43 views
Python jinja2 redirect with passing a parameter
I am using Google app engine and I want to redirect to another page with a parameter when a form submited.
Here is the first form:
<form method="post" class="form-inline pull-left">
<div ...
0
votes
2answers
22 views
Return object property value for variable property
I am trying to set up a debugging page with a list of objects, object property names, and object property values. I am trying to obtain the value of an particular property of a particular object type. ...
0
votes
2answers
66 views
Uncaught Reference Error: None is not defined
New to javascript. Trying to add a list of markers (from python) to a google map.
My raw Jinja2 template:
<head>
<title>Google Map Test</title>
<meta name="viewport" ...
0
votes
1answer
39 views
How to prevent space in output due to line break in the HTML code?
I have seen this question up here and some are solving it by comment tags or breaking tags like this:
<i><!--
-->t does not work on the first level with tabspace = 2
beside it looks ...
4
votes
2answers
46 views
In jinja2 on Google App Engine, how can I (easily) build a URL based on a route name with arguments?
If I construct a jinja environment as follows:
jinja_environment = jinja2.Environment (
loader=jinja2.FileSystemLoader ((os.path.dirname (__file__), 'templates')), extensions=[])
...
0
votes
2answers
30 views
Get current locale in Jinja2
On my website use Flask + Jinja2, and Flask-Babel for translation. The site has two languages (depending on the URL), and I'd want to add a link to switch between them. To do this correctly I need to ...
0
votes
1answer
30 views
Python lambdas in Jinja2
I use Jinja2 as a website template engine, and all helper functions used in templates I've implemented as macros, but for one. This is it's Python code:
def arrow_class_from_deg(angle):
if angle ...
0
votes
1answer
56 views
Flask url_for Referencing Static Files
How do you use url_for in flask to reference a file nested in other files?
For instance, I might have a bootstrap.min.css file in a folder called bootstrap which is inside a folder called static.
So ...
0
votes
1answer
40 views
Webapp2 Routing and Python inclusion
In the webapp2 URI routing there are some examples using webapp2.Route(r'/', handler='...'), and some aren't using r'/' -- so my question is, what is the R for, and should I be using it?
Also, if ...
0
votes
2answers
49 views
Python query objects are not serializable
When I tried to encode the query objects I get the following error:
File "C:\Program File\Python27\lib\json\encoder.py", line 264, in iterencode
return _iterencode(o, 0)
File ...
1
vote
3answers
59 views
Serving Images with Google app engine
I'm trying to make it so that when someone uploads a picture(successfully), its redirected to a permalink with the uploaded image showing. Here is what I've tried so far.
import webapp2
import os
...
0
votes
1answer
41 views
iterating over loop in html and javascript only executing once - should be doing each time in the loop
I'm trying to render a template that displays the number of reviews (1 review or xxx reviews). I'm iterating over an object of entity instances in GAE through jinja2, but it only executes the script ...
0
votes
1answer
50 views
Passing Googlemap API V. 3 Markers from Python to Javascript via Jinja2
I have a list in a GSQL database of markers that I wish to send to javascript so that they can be displayed on a google map. In effect, I pass a python list, which looks something like:
[[50.1142, ...
0
votes
1answer
25 views
Comments not working in jinja2
I have a template(test.html) as follows:
{% extends 'base.html' %}
{% from "_formhelpers.html" import render_field %}
{% block content %}
<div class="container">
<div class="row">
...
0
votes
1answer
46 views
Webapp2 Jinja2 Dict in List in Dict
I have the following context dict:
context={'idp': []}
Later on, I append a few dicts into the list:
context['idp'].append({'provider','login_url'})
context['idp'].append({'provider','login_url'})
...
0
votes
1answer
51 views
vim gg=G html and jinja2
I use gg=G to reindent my files in vim. I have jinja2 templates which contain jinja2 expressions and html. The filetype is set to jinja. When I use gg=G, the html get's reindented correctly but not ...
0
votes
1answer
22 views
Can I combine built-in filters in a custom Flask jinja2 filter?
So I'm trying to make a custom-filter in Flask, I am not sure if I can use custom filters with blueprints, so I just put it in my app config, because I can't use @app decorator in other files.
def ...
0
votes
1answer
25 views
javascript syntax error if AND statement
uck - keep getting syntax error - what's wrong?? - this was in my js console:
var full_name = curry + ", " + stefan;
if (( != None) && (!="") && (!= "None")) {
...
0
votes
2answers
37 views
How to modify a link defined by an argument in Jquery?
I want to modify a link according to it's ID in javascript. The problem is that I generate a list using Jinja2 so here is my code :
{% with ips = ips %}
{% for include in ips.includedip %}
...
0
votes
0answers
40 views
webapp2 Routing and Templating
Are you supposed to pass the configuration of jinja2 like so
import webapp2
def_config['webapp2_extras.jinja2']={
'template_path' : 'custom/path/to/templates'
}
app = webapp2.WSGIApplication([ ...
0
votes
0answers
18 views
Jinja2 for loop behaving similarly to with
I'd like to iterate over a set of objects and find the maximum of one particular attribute, however jinja2 ignores any action within an iterator on a variable declared outside of the iterator. For ...
0
votes
1answer
89 views
ImportError: No module named _sqlite3 in Jinja2 template
I've just migrated from the Python 2.5 to the 2.7 runtime, and most of server I've written runs fine. However I'm occassionaly seeing this odd stack trace (I've hacked it down for brevity):
ERROR ...
0
votes
1answer
31 views
Inline javascript to avoid hackish data APIs
I need to render a plot using jqplot from within a jinja2 template. The template has access to the data that needs to be plotted. I could pass the data to some external javascript by embedding it in ...
0
votes
0answers
21 views
jKeep the dropdown selection in jinja2 [duplicate]
I am using python with jinja framework. I try to keep the selected value from my submitted form. Each time a user post, the dropdown menu is empty.
I didn't find anything in google. Any help?
2
votes
1answer
56 views
How to return raw HTML (using Flask)
I'm working on a small project which creates the HTML content for my organization's newsletter.
Here's how it works: The user selects a number of stories which will be published and then my Flask ...
0
votes
1answer
53 views
Stable sorting in Jinja2
It is possible to apply the sort filter in Jinja2 successively to sort a list first by one attribute, then by another? This seems like a natural thing to do, but in my testing, the preceeding sort is ...
1
vote
0answers
73 views
Rendering HTML emails with inline CSS using Jinja
As you know, if you are going to send an HTML email, all CSS styling must be inline on the elements themselves e.g. <p style='font-family: Helvetica'>
Is there a way I can use Jinja to easily ...
0
votes
0answers
28 views
How tu create a custom URL from selector and id
I am getting some headhaches trying to create a custom http request via Javascript. Here is the thing :
I am using Flask (so rendering templates with jinja2) and I got that view :
# Creating a custom ...
0
votes
1answer
48 views
Iterate over GQL query fields
I am trying to implement an 'Edit' function for entities in a google app engine datastore. So if a key is specified for an datastore entity I would like to fill a form with values associated with this ...
0
votes
0answers
16 views
Context inheritance with Jinja2 templates
I am having troubles to inherit context in Jinja2.
I have server code -wsgi app:
class MyApp(object):
def __init__(self, config):
template_path = os.path.join(os.path.dirname(__file__), ...
0
votes
0answers
37 views
Jinja2 and Ajax refreshing a div
I try to implement a form with jinja2 and submit it with ajax. After than, I want to make few calculations and render the results to a single div only. I read enough about django and ajax, but I ...
1
vote
1answer
27 views
Including Blocks from Jinja templates
I would like to include blocks from templates instead of macros, as many templates will be including content from many other templates, so extends isn't an option.
I've read many answers about this, ...
0
votes
1answer
62 views
Passing a list from peewee to jinja2 in flask
I'm trying to write a Flask application that queries my database (using peewee), and sends the results into Jinja2 for rendering. My view looks like this:
@application.route('/maindash')
def ...

