I don't fully know all the details yet, but I'll share what I think.
I think that if a page is defined in views.py, it may be implemented as a function-based view.
You typically map or reference it in urls.py so the URL routes to that view.
Like a static page, a simple function-based view can sometimes load faster than a class-based dynamic view in Python.