urlpatterns = [ url(r'^admin/', admin.site.urls), url(r'^FBVTEST/', views.FBV_Test.as_view()), ] urls.py from django.shortcuts import render,HttpResponse,redirect from django.views import View # Create your views here. class FBV_Test(View): def dispa…