Hi folks, just wanted to share my guide to the Neapolitan library for Django.
CRUD (i.e. Create, Read, Update, and Delete) can make up a lot of the time spent developing an app. Sometimes I just want to get something up and running and creating all of those views and templates takes more time than I’d like.
Neapolitan is a library that comes with templates for your object list, detail, create, and delete pages. Simply extend the CRUDView
while specifying your model class, and you’ve got full-fledged CRUD for that model.
Here’s my guide to using Neapolitan, hopefully it’s useful to you!