How to access gmail

2023-08-26 Thread TASLIMA S
Dear friends, I am developing an email signature web application. How to access gmail mails to my application. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to dj

Re: UpdateView and DeleteView

2023-08-26 Thread Ruby
I'm glad it worked out, Consider using LoginRequiredMixin to ensure that current user is authenticated before accessing the view. On Sat, Aug 26, 2023, 16:23 'Simon Connah' via Django users < django-users@googlegroups.com> wrote: > Thank you! That is very helpful. > > --- Original Message --

Re: UpdateView and DeleteView

2023-08-26 Thread 'Simon Connah' via Django users
Thank you! That is very helpful. --- Original Message --- On Saturday, August 26th, 2023 at 14:07, Ruby wrote: > You can simply set a test case using the built-in user passes test > (https://docs.djangoproject.com/en/4.2/topics/auth/default/#django.contrib.auth.decorators.user_passes_

Re: UpdateView and DeleteView

2023-08-26 Thread Ruby
You can simply set a test case using the built-in user passes test ( https://docs.djangoproject.com/en/4.2/topics/auth/default/#django.contrib.auth.decorators.user_passes_test ) On Sat, Aug 26, 2023, 11:20 'Simon Connah' via Django users < django-users@googlegroups.com> wrote: > I want to make su

UpdateView and DeleteView

2023-08-26 Thread 'Simon Connah' via Django users
I want to make sure that the only people who can update and delete an object are either superusers or the person that originally created them but I'm not sure how to go about doing it. Can someone point me in the right direction? I'm not sure which method(s) to override. Thank you. -- You rec