Skip to content

Instantly share code, notes, and snippets.

@patrys
Created December 20, 2016 19:07
Show Gist options
  • Save patrys/2ec372e69c6081daa82f289b7e19ca69 to your computer and use it in GitHub Desktop.
Save patrys/2ec372e69c6081daa82f289b7e19ca69 to your computer and use it in GitHub Desktop.
from django.views.generic import View
from django.template.response import TemplateResponse
def get(request):
return TemplateResponse(request, 'index.html')
my_class_based_view = View.as_view(dispatch=get, __init__=7, as_view=None)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment