flask how to access url of response code example
Example 1: flask conditional according to urrl
<!DOCTYPE html>
<html>
<head>
<title>Template</title>
</head>
<body>
<h3>You are here: {{ request.path }}</h3>
{% if request.path == url_for('show_funding') %}
<script src="{{ url_for ('static', filename='js/funding.js')}}"></script>
{% endif %}
</body>
</html>
Example 2: flask conditional according to urrl
from flask import Flask
from flask import request
from flask import render_template
app = Flask(__name__)
@app.route('/')
def show_index():
return render_template('funding.html')
@app.route('/funding')
def show_funding():
return render_template('funding.html')
if __name__ == '__main__':
app.run(debug = True)