carltongibson / neapolitan

Quick CRUD views for Django
https://noumenal.es/neapolitan/
MIT License
502 stars 35 forks source link

added list_view_url to the get_context_data #52

Open albertorp opened 3 months ago

albertorp commented 3 months ago

Many times, when using the Create, Read or Update views, I need a quick way of going back to the list view. I saw that the get_context_data had a "create_view_url" in it, but not a "list_view_url", so I have just added that to the context. So that now, in the templates, I can use this list_view_url to create another button to either cancel the Creation or Update, or to just go back to the ListView

This is the only change made