django, name 'IndexView' is not defined
问题 I am following this tutorial. At the moment I am at this point but when I start my server with python manage.py runserver 0.0.0.0:8000 and open the url in my browser, I receive following Error: name 'IndexView' is not defined This is my urls.py from django.conf.urls import include, url from django.contrib import admin from django.conf.urls import patterns from rest_framework_nested import routers from authentication.views import AccountViewSet router = routers.SimpleRouter() router.register(r