Generic views
Fastview defines a set of generic views - subclasses of the Django generic views with a bit more functionality:
All Fastview views have the following additional attributes:
title = "view title"- used for templatespermission = Permission()- used to control access - see permissionstemplate names default to
fastview/<action>.html- egCreate’s default template isfastview/create.html. Override as normal by settingtemplate_name.
Configuring the generic views