<ol>
{% for i in range | atividades %}
<li>{{<a href="{{ url_for('link_atividades[i]')}}">{{atividades[i]}}</a>}}</li>
{% endfor %}
</ol>
I'm calling the template this way in the python file:
@app.route("/")
def index():
atividades = ["Estudar","Programar", "Praticar Karate", "Trabalhar", "Hobbies"]
link_atividades = ["estudar.html","programar.html" ,"praticar_karate.html" ,"trabalhar.html" ,"hobbies.html"]
return render_template("index.html", atividades=atividades, link_atividades=link_atividades)
Can anyone help me?