You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Steps to Reproduce
1.Create Blank Django Web Project
2.Create virtual environment
3.Right-click BasicProject in SE, select Add > New item > Django 1.9 App, specify the app name "HelloDjango" in the Name field and select OK
4.In the HelloDjango folder, modify views.py to match the code below, which defines a view named "index"
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def index(request):
return HttpResponse("Hello, Django!")
5.In the BasicProject folder, modify urls.py like below:
Environment
Steps to Reproduce
1.Create Blank Django Web Project
2.Create virtual environment
3.Right-click BasicProject in SE, select Add > New item > Django 1.9 App, specify the app name "HelloDjango" in the Name field and select OK
4.In the HelloDjango folder, modify views.py to match the code below, which defines a view named "index"
5.In the BasicProject folder, modify urls.py like below:
Expected behavior
I can get IntelliSense
Actual behavior
I can not get 'HelloDjango' IntelliSense
The text was updated successfully, but these errors were encountered: