Jinja is a template engine. It is now obsolete in favor of the new version, Jinja2. Use this tag only for questions relating to Jinja 1.

learn more… | top users | synonyms

0
votes
0answers
15 views

jQuery add/remove class based on jinja variable

Hey all I am trying to add and remove a CSS class based on a jinja variable that changes through an ajax request. The issue is that the first time the ajax is called the class is added or not ...
0
votes
1answer
18 views

Jinja2 and ASPX

I have a jinja2 template, and I really need to somehow use it in ASPX. Is there any template engine compatible with jinja2 for aspx? Or can I somehow convert the jinja2 templates to another engine ...
-1
votes
1answer
34 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 ...
0
votes
1answer
66 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 ...
1
vote
1answer
38 views

Flask/Mongo/Jinja - Slicing a ListField and showing the last entries of the database

I have a list with 12 categories inside an object, I want to get the first 3 itens of this list and show only the last entry of the database of each one of these 3 itens. What am I doing wrong? I ...
0
votes
1answer
20 views

jinja2 gloable set doesnt work

I am writing a template of jinja. In the html file, I wrote: {% set tmpx, tmpy = 0 %} {% for greeting in greetings %} {% if greeting.author %} {% tmpx = greeting.data_x %} {% ...
1
vote
2answers
101 views

Flask templates including incorrect files

I'm having a rather strange problem using a jinja2.ChoiceLoader (also tried with multiple paths with FileSystemLoader, no joy) in Flask. I have several "theme" directories, like so. /templates/ ...
0
votes
1answer
78 views

How to show progress bar in Python CGI + Jinja? - accessing dynamic variable?

I'm trying to add a progress bar to my Python/Jinja2 webpage. Using an JS progress bar for unknown length/constant animation is easy, but since I know the % of completion of my script, I'm hopping to ...
3
votes
1answer
178 views

jinja: TemplateSyntaxError: expected token 'name', got 'string'

Have two files in a Flask application: base.html <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html ...
1
vote
1answer
40 views

Jinja2: saying 'Render this macro inside another macro or template'

I have a number of macros I'd like to render within a common container macro or template. With pseudo-code: Macro1 Macro2 Macro3 Container In a template: "render macro1 inside of Container" e.g. ...
0
votes
1answer
58 views

include a template inside another but with extend

Here is what i want tmpl1.jinja {% for x in List %} {% set User = List[x] %} {% include 'tmpl2.jinja' %} {% endfor %} tmpl2.jinja {% extends "tmpl3.jinja" %} {% block link %} ...
1
vote
2answers
163 views

JQuery $(window).load not working properly with Jinja template

I'm trying to use JQuery to detect when the content of my pages are loaded and then resize the divs (navigation bar and content) on my page based on how much content there is. (For example, if there's ...
0
votes
2answers
139 views

Passing data from javascript into Flask

I know how to pass data with a jinja template from python into javascript, but I want to pass a javascript variable into python. I'd like to do it without reloading the page. Is that possible?
1
vote
2answers
63 views

Add quota around each string in a list in jinja2?

The variable in Python : names = ["a", "b"] What I write currently in Jinja2 template: c({{ names | join(",") }}) What I get using the template above: c(a, b) However, what I really need is: ...
0
votes
1answer
43 views

can i use “last” filter in jinja for dict object?

messages = { '1': "hi i m here", '2': "how r u" } in jinja template: {{ messages | last }} I am not sure of the size of the list i m getting and wanna access the last element. Can i do ...
1
vote
1answer
73 views

Flask Jinja Template '<br>'.join

I have a list: list = ['var','var','var'] In my Jinja template I want to do: {{'<br>'.join(list)}} But the <br> actually shows on the page. Is there a way to do this without adding ...
2
votes
0answers
56 views

Jinja2 automatic creation of prefix whitespace

In StringTemplate - which I've used in some projects to emit C code - whitespace prefixes are automatically added in the output lines: PrintCFunction(linesGlobal, linesLocal) ::= << void foo() ...
0
votes
1answer
92 views

Jinja load template from string - and extend from file

I have the following code: from jinja2 import Template templ_str = "lots of garbly html" # Compiled by external logic templ_context = ast.literal_eval(context_dir) # Compiled by external logic ...
0
votes
1answer
102 views

Jinja - load custom template tag set

Is there a way to load a custom tag set - or even individual custom tags? In django templates, I was able to do this: {% load custom_tag_set %} Is there a way to do this in jinja?
0
votes
1answer
44 views

Jinja2 render custom view

i'm developing a website with flask-python.I create a html file in a variable.Can i render this variable instead of writing render_template('index.html')? Here's my code: replacedView = ...
0
votes
1answer
106 views

jinja template variable assignment scope

Given the following Jinja snippet {% set sep='' %} {% for stamp in stamp_list -%} {%- for heartbeat in heartbeat_list -%} {%- if ...
0
votes
1answer
101 views

Jinja, Javascript and Google Maps Api, conflict

I'm trying to display a map using google api, but it's not showing. <script type="text/javascript" ...
0
votes
0answers
74 views

Converting Django Templates to Jinja Templates - Automatically Scope

I am going through the not-very-fun process of converting my Django templates into Jinja templates. One big headache I've run into is that in Jinja, variables in scope in a parent block do not ...
0
votes
1answer
195 views

Jinja2 can no longer find templates TemplateNotFound

I was playing with my configuration files, and then I saved something, and then suddenly none of my templates can be found in my localhost anymore. It refuses to find index.html or any templates in ...
0
votes
1answer
132 views

How to set the default float format for Jinja in Flask?

I am using Jinja in Flask, I want to make all float looks like 123.45 by default in all my html page, not to keep too many digits after decimal point. I don't want to format every float one by one in ...
2
votes
0answers
109 views

NamedTuples in jinja tempate macros

The continuing saga, extended from orginal thread So, I have a something to make macros within python code: from flask import get_template_attribute from jinja2 import Template class ...
2
votes
1answer
339 views

Flask : How to serve static files from template directory?

I am developing a SAAS application using Flask and I want users to be able to create/upload/use their own custom templates. This is how my directory structure is right now : /flaskapp ...
11
votes
1answer
388 views

*args, **kwargs in jinja2 macros

How are extra args & kwargs handled for a Jinja2 macro? The documentation isn't exactly clear offhand. For example, this is clearly wrong: {% macro example_1(one, two, **kwargs) %} do macro ...
1
vote
1answer
185 views

Scraping data from website using Beautiful Soup and show it in jinja2

I am trying to pull list of data from website using Beautiful Soup: class burger(webapp2.RequestHandler): Husam = ...
2
votes
2answers
241 views

How to dynamically select template directory to be used in flask?

By default flask uses template files stored in "template" directory : /flaskapp /application.py /templates /hello.html Is there any way to dynamically choose template directory ...
0
votes
1answer
152 views

flask jinja2 insert content of css file inline

I have a flask project in which one of the pages needs to be self contained. I have a separate file whose content I need to insert into the html page's head. What's the easiest way to do it?
1
vote
1answer
421 views

flask jinja macros variable in url_for

I have a flask app with a jinja macro that looks like that {% macro icon(site, title="") %} <img src="{{ url_for('static', filename="icons/XXX.png") }}" alt="{{ title }}" class="img-icon"> ...
1
vote
0answers
55 views

jinja2: blocks in included files [duplicate]

Possible Duplicate: Use blocks from included files for parent in jinja2 A basic template: {% include "include.html" %} included file {% block somethingnew %}{% endblock somethingnew %} ...
0
votes
0answers
105 views

Reconciling a jinja2 recursive loop

Given a list of nodes, I need to recurse the list, render a form field if there is a form field, else cycle through the children of the node: The first gets the structure right, but won't render the ...
3
votes
2answers
644 views

Sort dict in jinja2 loop

I'm still learning jinja2 and flask and I'm having a difficulty using dictsort in jinja2. So I'm passing this dict into a jinja2 template: {'PEDD United': {'id': 37828, 'rank': 12, 'totalpts': ...
3
votes
1answer
100 views

Python and Flask, and escaping how to get rid of amp;

I am iterating over a dictionary in python. The values that contain "&" are converted to &amp; How to I stop that? It shows on the web page like this: Hobbies &amp; Leisure My ...
0
votes
1answer
186 views

Twig template not including block?

I'm looking to get started with Twig, but having a real headache getting the {% block %} to work at all - I feel there must be something very obvious I am missing. My index.php loader looks as ...
1
vote
1answer
199 views

jinja url named routes escaped curly brace literal

I'm outputting the python named routes into a Urls JavaScript object like this: var Urls = { ajaxCompanyList: "{%url data-company-list %}", ajaxCompanyDetail: "{%url data-company-detail ...
2
votes
2answers
116 views

How do I replace characters in a Google Datastore query result object?

I'm new to Python, Google AppEngine and Jinja. If I've posted too much code below, I am sorry. This is my first posted question to StackOverflow. I'm building a blog (for a class) and I need to ...
5
votes
1answer
1k views

Jinja Templates - Format a float as comma-separated currency

I'm trying to format a float as comma-separated currency. E.g. 543921.9354 becomes $543,921.94. I'm using the format filter in Jinja templates, which seems to mimic the % operator in Python rather ...
1
vote
1answer
197 views

With flask/jinja, what is a viable way to safely render a link inside a user generated block of text?

Think twitter where you paste a link next to some plain text and when your tweet is rendered, that url is now a clickable link. Do I: replace jinja's autoescape with my own by scanning the text for ...
1
vote
1answer
198 views

In Flask, how do you update an input field in a template?

Being am new to Flask I read the manuals of Flask an Jinja and I know how to read a filed from a template, but not how to update the template. My template has the following structure which I modified ...
4
votes
1answer
2k views

Jinja - Is there any built-in variable to get current HTML page name?

i'm very new to Jinja and Flask I want to set different background color in the navigation bar to indicate the current page. Is there any built-in Jinja variable or method that returns current HTML ...
0
votes
2answers
200 views

Jinja Alphabetically sort a list with mixed case

I am trying to sort the options in a select list alphabetically using Jinja filters. the problem I am having is the list has mixed case values and it is not coming out alphabetically. I would still ...
1
vote
4answers
117 views

CSS not extending?

I am working on a project I created myself (www.deepsecurity.org) which people will be able to paste stuff and much more in the future. I have a problem with this project though, if you check the ...
2
votes
2answers
495 views

Jinja Vim plugin not working

I want to have my .html.twig files highlighted as Jinja files. (There doesn't seem to be a good Twig plugin for Vim out there, so I'm using Jinja instead.) I downloaded jinja.vim from here and put the ...
3
votes
1answer
580 views

How to extend a base Flask Jinja template from a Blueprint template?

I am creating a fairly large application using Flask and Jinja. Flask recommends separating large applications into smaller units using Blueprints. If I have a base layout for my entire ...
0
votes
1answer
122 views

Jquery data() returning undefined

I have been doing a simple jquery data() test. However it is returning undefined. It works on jsfiddle though (http://jsfiddle.net/yrCdj/). I have a jinja2 loop which populates a div and I want to ...
0
votes
1answer
209 views

UTF-8 and Jinja when template inheritance

I am using template inheritance with jinja. Some of my child templates have unicode characters and when trying to render within the parent template I get the following error: UnicodeDecodeError: ...
2
votes
2answers
546 views

TemplateNotFound: index.html with Google App Engine & Jinja2

I'm trying to build my first GAE app with jinja2. After overcoming a dozen small errors, now I'm stuck with this: Traceback (most recent call last): File "C:\Program Files ...

1 2