how to create a django project in visual studio code code example
Example 1: how to start a django project
django-admin startproject project_name
Example 2: create django project
$ python manage.py startapp polls
Example 3: django vs code extensions
<h1>{{ question.question_text }}</h1>
<ul>
{% for choice in question.choice_set.all %}
<li>{{ choice.choice_text }}</li>
{% endfor %}
</ul>