What are python classes? -
i'm trying learn programming , came across in core app.
from django.shortcuts import render django.views.generic import templateview # create views here. class splashview(templateview): template_name = "index.html"
what above class do, in context?
it templateview
does, plus has attribute called "template_name" value of "index.html".