updateview

Solutions on MaxInterview for updateview by the best coders in the world

showing results for - "updateview"
Katia
06 Jul 2020
1class YourView(UpdateView):
2	model			= YourModel
3    fields			= ['your_fields']
4    template_name	= 'your_template.html'
5    success_url		= reverse_lazy('home')