I am learning flask with blueprints and I have the following code example:
from flask import Flask, render_template, Blueprint, g
bp = Blueprint(\'language\', _
Looks like you are missing the Blueprint name (language
) in your url link:
From here:
bp = Blueprint('language', __name__, url_prefix='/', static_folder='static')
So your link will need to be appended:
English
I would also suggest naming it something different so it doesn't conflict with any other naming convention you might have.