Exemplo n.º 1
0
def index():
    return render_template('index.html',
            years=list_years(), countries=list_countries())
Exemplo n.º 2
0
def country(code):
    return render_template('country.html',
            years=list_years(country=code),
            country=code)