This is a cs50 pset if you didn’t know.
JavaScript
x
23
23
1
{% extends "layout.html" %}
2
3
{% block title %}
4
Log In
5
{% endblock %}
6
7
{% block main %}
8
<form method="post">
9
<div class="form-group">
10
<select class="custom-select" style="width: auto;" name="select">
11
<option value="" disabled selected>Symbol</option>
12
{% for stock in symbols %}
13
<option value={{ stock }}>{{ stock }}</option>
14
{% endfor %}
15
</select>
16
</div>
17
<div class="form-group">
18
<input class="form-control" name="shares" placeholder="Shares" type="text">
19
</div>
20
<button class="btn btn-primary" type="submit">Sell</button>
21
</form>
22
{% endblock %}
23
Here is the app.py
JavaScript
1
15
15
1
@app.route("/sell", methods=["GET", "POST"])
2
@login_required
3
def sell():
4
5
user = db.execute("SELECT username FROM users WHERE users.id=?", session['user_id'])[0]['username']
6
7
if request.method == "GET":
8
symbols = []
9
unfiltered_stocks = db.execute("SELECT symbol FROM purchases WHERE user=?", user)
10
11
for stock in unfiltered_stocks:
12
symbols.append(stock['symbol'])
13
14
return render_template("sell.html")
15
You can consider that stocks is an array and its not empty
The Output is just the first placeholder option and nothing more
Advertisement
Answer
When you call render_template()
, you can pass Python variables to it which makes them available in your Jinja template.
Change return render_template("sell.html")
to return render_template("sell.html", symbols=symbols)