[Fixed]-Django Polls Tutorial Part 3: polls/templates/polls/index.html – What is this code? It's not python

0👍

1👍

As mentioned above it is Django template language (the stuff in curly braces) And because it is a template it is inside of HTML.

👤Jasper

0👍

This is Django templating engine ( just like jinja in Flask). The stuffs under curly braces “{}” takes the values from views.py in app and present to html file.

Leave a comment