Re: Can't get rid of "CSRF verification failed. Request aborted.: when submit form with nothing selected

2020-07-30 Thread 'Amitesh Sahay' via Django users
package. from django.views.decorators.csrf import csrf_exemptstackoverflow.com | From: django-users@googlegroups.com on behalf of coolguy Sent: July 29, 2020 10:05 PM To: Django users Subject: Re: Can't get rid of "CSRF verification failed. Request aborted.: when submit form with no

Re: Can't get rid of "CSRF verification failed. Request aborted.: when submit form with nothing selected

2020-07-30 Thread Isha Thakur
M To: Django users Subject: Re: Can't get rid of "CSRF verification failed. Request aborted.: when submit form with nothing selected By default, Django checks for the CSRF token in all POST requests. Remember to include the csrf_token tag in all forms that are submitted via POST. Please

Re: Can't get rid of "CSRF verification failed. Request aborted.: when submit form with nothing selected

2020-07-30 Thread Christian Seberino
coolguy Remember to include the csrf_token tag in all forms that are submitted via > POST. > Yes! It must be INSIDE the form element *not* outside! I'm so grateful for your help. All the Best, Chris -- You received this message because you are subscribed to the Google Groups "Django

Re: Can't get rid of "CSRF verification failed. Request aborted.: when submit form with nothing selected

2020-07-30 Thread Christian Seberino
Amitesh Indeed your suggestion below fixed everything. I can't thank you enough! cs On Wednesday, July 29, 2020 at 8:59:52 PM UTC-5, Amitesh Sahay wrote: > > Generally, {% csrf_token %} is written just below the opening tag. > I mean, not sure if this has anything to do with your issue.

Re: Can't get rid of "CSRF verification failed. Request aborted.: when submit form with nothing selected

2020-07-29 Thread Christian Seberino
Amitesh Oh my thank you so much. I actually did move the csrf token outside the form element. That may be it. I will check that soon. On Wed, Jul 29, 2020, 8:59 PM 'Amitesh Sahay' via Django users < django-users@googlegroups.com> wrote: > Generally, {% csrf_token %} is written just below the

Re: Can't get rid of "CSRF verification failed. Request aborted.: when submit form with nothing selected

2020-07-29 Thread coolguy
By default, Django checks for the CSRF token in all POST requests. Remember to include the csrf_token tag in all forms that are submitted via POST. Place csrf_token within form tag... e.g. {% csrf_token%} tag On Wednesday, July 29, 2020 at 9:57:41 PM UTC-4, Christian Seberino wrote: > >

Re: Can't get rid of "CSRF verification failed. Request aborted.: when submit form with nothing selected

2020-07-29 Thread coolguy
By default, Django checks for the CSRF token in all POST requests. Remember to include the csrf_token tag in all forms that are submitted via POST. Please place csrf_token in tag. You have placed it outside of form tag. On Wednesday, July 29, 2020 at 9:57:41 PM UTC-4, Christian Seberino

Re: Can't get rid of "CSRF verification failed. Request aborted.: when submit form with nothing selected

2020-07-29 Thread 'Amitesh Sahay' via Django users
Generally, {% csrf_token %} is written just below the opening tag. I mean, not sure if this has anything to do with your issue. Others may confirm as well Regards, Amitesh On Thursday, 30 July, 2020, 07:26:21 am IST, Christian Seberino wrote: Here is my template... {% extends

Re: Can't get rid of "CSRF verification failed. Request aborted.: when submit form with nothing selected

2020-07-29 Thread Christian Seberino
Here is my template... {% extends "html_base" %} {% block body_elements %} UPDATE STATUSES {% for e in both %}

Re: Can't get rid of "CSRF verification failed. Request aborted.: when submit form with nothing selected

2020-07-29 Thread coolguy
No. What i said the link you sent gives the validation error since fields are blank. Its not working the same way as you. Can you send the code for your html template. On Wednesday, July 29, 2020 at 6:53:29 PM UTC-4, Christian Seberino wrote: > > > > On Wednesday, July 29, 2020 at 5:29:53 PM

Re: Can't get rid of "CSRF verification failed. Request aborted.: when submit form with nothing selected

2020-07-29 Thread coolguy
No. What i said the link you sent gives the validation error since fields are blank. Its nothing working the same way as you. Can you send the code for your html template. On Wednesday, July 29, 2020 at 6:53:29 PM UTC-4, Christian Seberino wrote: > > > > On Wednesday, July 29, 2020 at 5:29:53

Re: Can't get rid of "CSRF verification failed. Request aborted.: when submit form with nothing selected

2020-07-29 Thread Christian Seberino
On Wednesday, July 29, 2020 at 5:29:53 PM UTC-5, coolguy wrote: > > Tired your link for the form. If this is the form you are concerned about > then the message that pops up is for validation i.e. form.is_valid(). > Did you see the CSRF error I got?. Here is a pic https://imgur.com/a/LIRBadQ

Re: Can't get rid of "CSRF verification failed. Request aborted.: when submit form with nothing selected

2020-07-29 Thread coolguy
Tired your link for the form. If this is the form you are concerned about then the message that pops up is for validation i.e. form.is_valid(). On Wednesday, July 29, 2020 at 4:55:33 PM UTC-4, Christian Seberino wrote: > > I have a Django app with multiple forms on various pages. They all work

Re: Can't get rid of "CSRF verification failed. Request aborted.: when submit form with nothing selected

2020-07-29 Thread Taofeek Jimoh Iyanda
Check this website, it may be helpful https://www.techiediaries.com/django-react-forms-csrf-axios/ On Wednesday, July 29, 2020 at 9:55:33 PM UTC+1, Christian Seberino wrote: > > I have a Django app with multiple forms on various pages. They all work > except for one with just an optional

Re: Can't get rid of "CSRF verification failed. Request aborted.: when submit form with nothing selected

2020-07-29 Thread Christian Seberino
Here is the problematic url... > https://grandmas4hire.com/admin_status/ > Just press submit button w/o doing anything else and you'll see -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

Can't get rid of "CSRF verification failed. Request aborted.: when submit form with nothing selected

2020-07-29 Thread Christian Seberino
I have a Django app with multiple forms on various pages. They all work except for one with just an optional checkbox... I checked and they all have templates with {% csrf_token %}. The only thing special but the problematic form is that I have a checkbox input that is optional. That