1
vote
0answers
19 views

How to buffer results from a webpage to another?

I am using flask for my website. I want to submit data using a form from my website to another website and then format the results page (an html page) before displaying it on the browser on my ...
1
vote
1answer
38 views

Flask: Not able to receive HTML form POST data

Here is my HTML <form class="form-horizontal" action="/" method="POST"> <div class="control-group"> <label class="control-label" for="email">Email</label> ...
2
votes
1answer
59 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
27 views

Flask download box

I'm trying to make a button that will show the "Save as" download box. The images that I want to offer for download are not in the static folder, nor they will be. Using flask.send_file works by ...
0
votes
0answers
132 views

Grab checked input and send it in json format using AJAX jQuery and a POST request. Using Flask

Hi So I am having issues trying to send the checked data of a form using a button I configured for submission. The checked data is coming in using a 'GET' request and that works phenomenally using ...
0
votes
0answers
162 views

Sending checklist form values using jQuery, Flask, Python, and HTML

I am doing a web app. This web app will provide python information that will be parsed and used to communicate with a database and part of the information will be used to control a bluetooth module ...
0
votes
1answer
35 views

unable to show custom error message in Jinja2 template

I'm writing a register user function in ( using Flask, Python, Jinja2) which i'm checking if a username (or email) is already present and if so shows an error to below TextField. register code is: ...
0
votes
1answer
47 views

HTML table with contenteditable in python

I would like to create a HTML table with contenteditable fields from python. I am using python + flask. I have the data ready as a dictionary and needs to create a dynamic page and display the items. ...
0
votes
2answers
127 views

Dynamic HTML content and Python variables with Flask

On the user end, say I have people selecting school records through a form to display in a table below. For instance, they choose their name from a list of names, and that pulls their records from a ...
0
votes
1answer
114 views

datatable server sideprocessing

I have a datatatble and one coloumn is editable. I am looking for solution of 3 problems. can anyone help on this. I need to pass the the first coulumn to my serverside script ( that is the primary ...
0
votes
1answer
64 views

contenteditable with form submission

I have a form which has a table with one of the td element is contenteditable. When I click on the submit button I need to submit the edited elements on the form. I am basically using HTML + Python ...
0
votes
1answer
69 views

Sending data to server flask html

I am trying to create a simple checkbox that sends the data to server here is my html code. <form action="." method="POST"> <div class="checksheet"> <input id="XML Parser" ...
0
votes
1answer
102 views

how can I create a hidden text input box?

I'm writing a wtforms custom form that consists of multiple boolean check button / radio button and a hidden text input. if user clicks 'other' button, the textinput is enabled and user can ...
0
votes
2answers
157 views

How can I make html submit button functional in flask?

First, I want to apologize for the title of the question, I think it can be better, but I just couldn't think of a better one, so feel free to change it if you think of something better. Anyway, I ...
1
vote
1answer
77 views

Retrieving values of non input fields with Flask

Probably a stupid question, but I can't work out how to retrieve the values of anything other than input fields using python with Flask. For example, I have an html form with a element: <form ...
0
votes
1answer
157 views

Display a ‘loading’ message while a time consuming function is executed in Flask

I’m still relatively new to Flask, and a bit of a web noob in general, but I’ve had some good results so far. Right now I’ve got a form in which users enter a query, which is given to a function that ...
2
votes
2answers
188 views

Parse html form into a list of dicts in python / Flask

I am new to web programming and this is my first SO question, so hopefully I am asking the right way. I am building a simple survey-maker (similar to google forms or survey monkey) and I have a web ...
0
votes
0answers
52 views

Flask receiving empty forms

I'm trying to get a simple form set up in Flask for my own education. I've got a login.html page with this form code: <form action="{{ url_for('login') }}" method="post"> <div> ...
0
votes
1answer
57 views

Select Soccer Team and Output Soccer Team's Location

I am creating a form, where someone chooses a team and then the team's location should be outputted in a div. Here is what I have so far. How do I get the location from the correct team - the one ...
1
vote
1answer
309 views

How do i get the url parameter in a Flask view

I know it's very simple but i'm trying since an hour to get the url parameters: www.domain.com/?f=x**2 How do i get x**2 from the url in a Flask view?
0
votes
1answer
57 views

Newlines not being interpreted when getting from sqlite db?

I'm using Flask and Sqlite. I take some string, which contains newlines, and store it in the db. At some later point I get it from the db and include it on some page, and the string shows up without ...
0
votes
2answers
83 views

How do I open an href link in HTML to a file but not download the file in a Flask app

I'm using Flask and AutoIndex. When I go to the URL for the directory I specified with AutoIndex, I can see the files in the directory just fine. But when I click on a file to view it, the browser ...
2
votes
4answers
256 views

API in Flask--returns JSON but HTML exceptions break my JSON client

exceptions returned in HTML break my JSON client. I want to jsonify this output. More detail: i have a view function which an endpoint of this api app. As you can see, this function returns the ...
0
votes
1answer
94 views

display a list of last pages visited using flask app

I found this question( How to display a list of "latest pages visited" ) about how to display a list of latest pages visited for ruby on rails. How would you do this with flask? Do you use ...
0
votes
2answers
261 views

How to structure data to easily build HTML tables in Flask

I am trying to create HTML tables from data stored in a table. My data is read from a table and converted into a dict of lists, e.g.: x = {'date':[u'2012-06-28', u'2012-06-29', u'2012-06-30'], ...
-2
votes
1answer
287 views

Pass variables to HTML page in Python [closed]

I have one webpage displaying the data from a json file. I want to take the data from that file and pass it to an html page. Right now, I'm just trying to get the information to show up, but I keep ...
1
vote
1answer
226 views

Sorting A List In Descending Order Jinja

I'm creating a website in Flask using the Jinja template engine. I have a list of announcements but no good way to sort them. They are in a table being called on by id right now. I want to sort it by ...
2
votes
1answer
178 views

Iterating over a list of URLs in an HTML template using Python/Flask

This seems like a very basic problem but I can't figure it out. I'm passing a list of URLs into an HTML page and trying to print each one out in an href tag. I'm using Flask to run the test server, ...
0
votes
1answer
507 views

Flask serves static html pages

I am implementing a web app by Flask framework. This web app is about to server static html pages whose structure is like java doc. codes: from flask import Flask, send_from_directory,url_for app = ...
3
votes
1answer
1k views

Bad Request Error with flask, python, HTML, unusual initialization behavior with flask.request.form

I'm writing a web-app using flask, python and HTML. My issue is that the first time I load the a webpage, I get the following error Bad Request The browser (or proxy) sent a request that this ...
2
votes
1answer
532 views

jinja flask and loop properties

hello i have the code below on my template but can't get the loop.counter property is there anything wrong on the code? {% for res in res_list %} 79 <div id="tr_{{ res.id }}"> 80 ...
1
vote
2answers
1k views

Flask not serving pictures

I created a small Flask app for the purpose of processing and presenting data for my local consumption on my local machine. My Flask app processes data in a subfolder and then opens a webpage to ...
2
votes
1answer
368 views

Calling python functions in HTML file in Flask

I have a list of folders in my python file, and in an HTML file I iterate over the list to display the names of each folder on my page. {% for folder in folders %} <li><a href = ...
0
votes
1answer
267 views

web interface to python program: upload and download files

I am trying to make a simple web application where one can upload a file and provide the file to a python script. Flask seems appropriate for such purpose. The user can then download the file output ...
0
votes
1answer
369 views

flask forms and javascript

hello i have the html code below <form> <input type="text" id="filepathz" size="40" placeholder="Spot your project files"> <input type="button" id="spotButton" value="Spot"> ...
2
votes
2answers
3k views

sending data from html form to python Flask

hello i have the code below in my python file 539 def cmd_wui(argv, path_to_tx): 540 """Run a web ui.""" 541 from flask import Flask, flash, jsonify, render_template, request 542 import ...
1
vote
1answer
612 views

Flask, html and javascript desktop app

I want to build a desktop application using python, html and javascript. So far i have followed the tuts on flask and have a hello world working example. What should i do now to make it working? how ...
4
votes
1answer
252 views

How to get a build a form with repeated elements well

The title really doesn't say it, as i'm having trouble summarizing the issue. So here goes the long explanation: Let's say I'm adding multiple contacts' information, and I have these fields: Name ...
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 ...
4
votes
2answers
353 views

jinja2 + reStructured Markup

The idea is the following. I send some text to jinja2 using tags similar to stackoverflow's. How do I tell jinja2 to treat them as a markup containing text and to generate bold, italic and so on text ...
1
vote
1answer
85 views

Flask-Jinja2 FOR statement not printing assumed values

I'm a newbie experimenting with Flask/Jinja2 and SQL-Alchemy. I have a question about html output when using Jinja2 templating. My view function looks like this: from app import app from flask ...
-1
votes
2answers
408 views

How to fetch html data in python

I have the following html code <html> <head> <script type="text/javascript"> function processdata() { var un=document.getElementById('uname1'); alert("hI " + un.value); } ...
5
votes
1answer
728 views

How to generate an html directory list using Python

I am having some problems using Python to generate an html document. I am attempting to create an HTML list of a directory tree. This is what I have so far: def list_files(startpath): for root, ...
0
votes
1answer
144 views

Loading html file inside server directory tree into iframe fails

I have a local server using Flask web framework running on my machine. What I want is to load an html file, which is stored in a folder inside the app directory tree, into an iframe. The iframe src ...
3
votes
1answer
390 views

How do I get my HTML button to delete the right list item from a SQLite database?

I'm a beginner, so forgive any stupidity in advance. I'm using Flask (and by extension Jinja2) to create a simple web app -- one that basically lets you type a movie into a web form, which adds it to ...
0
votes
2answers
226 views

Flask tutorial: Stylesheet does not work

I have an exact copy of this flaskr folder. I ran the application. Everything works as expected but one thing. My blog application is not styled even though I have a 'style.css' file in the folder ...
1
vote
1answer
168 views

sqlite db called from flask only returns variables, not values

I have a flask app that queries a sqlite db: @app.route('/<subject_id>') def subject_id_lookup(subject_id): entries = query_db('select visitdt, cvnotes from exam where id = ?', ...
0
votes
2answers
591 views

Is it possible to perform Includes with flask?

Say I have a template layout saved in template.html. This template includes a banner, side navigation, content container, and footer. Can I use flask to break up these page elements in such a way ...
6
votes
2answers
1k views

More than one static path in local Flask instance

Is that possible to add more static paths for my local dev Flask instance? I want to have default static folder for storing js/css/images files for the site and another folder, e.g. designs to keep my ...
1
vote
1answer
294 views

reference error while including .js in .html in ubuntu using flask

Hi i am trying to include str.js and jit.js file in nev.html both are in same directories but it is giving me reference error flask file in flask/app1.py import json import simplejson from flask ...

1 2