“волня” Ответ

волня

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) 
Defeated Dogfish

волня

<!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>
Defeated Dogfish

Ответы похожие на “волня”

Вопросы похожие на “волня”

Больше похожих ответов на “волня” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования