Tagged Questions
1
vote
1answer
26 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 ...
1
vote
2answers
79 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/
...
3
votes
1answer
120 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 ...
0
votes
1answer
53 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 %}
...
0
votes
2answers
94 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
1answer
67 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 ...
0
votes
1answer
41 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
171 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
115 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
1answer
297 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
...
2
votes
2answers
195 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
126 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
376 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">
...
3
votes
2answers
550 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
96 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 & How to I stop that? It shows on the web page like this:
Hobbies & Leisure
My ...
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
193 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
187 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 ...
1
vote
4answers
116 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 ...
3
votes
1answer
522 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 ...
6
votes
1answer
701 views
Formatting a blog post in Flask / WTForms / Google App Engine
Here's the question in brief:
My blog posts at...
http://www.seanbradley.biz/blog
...totally lacks formatting. They're just a big block of plaintext. Any code or HTML tags such as /n or < br / ...
2
votes
1answer
189 views
Jinja: How does the null-master fallback example work?
The example code from the official jinja site:
{% if not standalone %}{% extends 'master.html' %}{% endif -%}
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<title>{% ...
4
votes
1answer
2k views
Flask-Babel how to use translation in Jinja template file
In my Flask application, in main.py file, I defined:
from flaskext.babel import gettext
....
def somefun():
return render_template('some.html', messages=messages)
in template file some.html, I ...
6
votes
2answers
2k views
Reload Flask app when template file changes
By default, when running Flask application using the built-in server (Flask.run), it monitors its Python files and automatically reloads the app if its code changes:
* Detected change in ...
11
votes
4answers
700 views
Flask static_folder hosted on S3
I am trying to reroute all of my /static content to host on Amazon S3. My first thought was to use global config['path'] throughout my jinja templates, but this won't work for external css and js ...
2
votes
3answers
957 views
Issue a POST request with url_for in Flask
I'm trying to issue a POST request within a jinja template in Flask. However, parameters are passed in via GET by default, and this particular method only accepts POST requests.
I tried specifying ...
2
votes
1answer
498 views
serializing datetime with flasks tojson filter
I'm getting this error:
TypeError: datetime.datetime(2012, 2, 12, 0, 47, 6, 542000) is not JSON serializable
when jinja is trying to parse this line:
var root_node_info = eval({{ nd|tojson|safe ...
5
votes
1answer
2k views
passing a variable into a jinja import or include from a parent html file
The scenario would be:
"you have a variable called person which contains a number of fields like name, address, etc which you want to pass to a partial piece of html" - this solution could be ...
