Re: Success Message after Submitting a form

2020-04-24 Thread Ahmed Khairy
Thank you Ramadan Kareem On Friday, April 24, 2020 at 12:11:09 AM UTC-4, mohamed khaled wrote: > > just use SuccessMessageMixin > > from django.contrib.messages.views import SuccessMessageMixin > > class PostCreateView(LoginRequiredMixin,SuccessMessageMixin, CreateView): > model = Post >

Re: Success Message after Submitting a form

2020-04-23 Thread mohamed khaled
just use SuccessMessageMixin from django.contrib.messages.views import SuccessMessageMixin class PostCreateView(LoginRequiredMixin,SuccessMessageMixin, CreateView): model = Post fields = ['caption', 'design'] template_name = "post_form.html" success_url = '/score'

Success Message after Submitting a form

2020-04-23 Thread Ahmed Khairy
I have created this class with the success message but I am not receiving the success message I requested, other pages are showing them but this one is not What might be wrong? In the views: class PostCreateView(LoginRequiredMixin, CreateView): model = Post fields = ['caption',