vkk.generic

This module offers some basic building blocks employed throughout the project.

More specifically, it extends on the generic views and other utilities offered by the Django framework itself.

For further reading, please consult the Django documentation on built-in class-based generic views, mixins and forms.

 1"""
 2This module offers some basic building blocks employed throughout the project.
 3
 4More specifically, it extends on the generic views and other utilities offered 
 5by the Django framework itself.
 6
 7For further reading, please consult the Django documentation on 
 8[built-in class-based generic views](https://docs.djangoproject.com/en/4.2/topics/class-based-views/generic-display/),
 9 [mixins](https://docs.djangoproject.com/en/4.2/topics/class-based-views/mixins/)
10and [forms](https://docs.djangoproject.com/en/4.2/topics/forms/).
11"""