Django - How to send a success message using a UpdateView CBV
问题 (first of all sorry for my bad english) I'm trying to show a message in a UpdateView when the users save the changes! This is my view class NeedUpdateView(UpdateView): model = Need template_name = 'purchases/needs_update_form.html' pk_url_kwarg = 'need_id' success_message = 'List successfully saved!!!!' fields = [ 'detail', ] When you save the app loads the same template! but i like to show a bootstrap alert if save the object! This is code in the template to show the message {% if messages %