Re: Django tried these URL patterns

2022-06-17 Thread Mike Kilmer
Not sure why, but moving path("integrations/", include("integrations.urls")), above the "" slash seems to have solved the problem. On Friday, June 17, 2022 at 5:45:19 PM UTC-5 Mike Kilmer wrote: > This app is set up to create webhooks and receive requests, however the > routing has broken and

Django tried these URL patterns

2022-06-17 Thread Mike Kilmer
This app is set up to create webhooks and receive requests, however the routing has broken and the requests are getting a 404. The path looks like this: http://127.0.0.1:8000/integrations/dc3509ac-1aa8-4c9a-a439-904342d885cd/order The Stack Track/Routing: Using the URLconf defined in

Re: CSRF issue in default login

2022-06-17 Thread Mike Kilmer
If you're interested in some piecemeal work, I could use some help. mike at mzoo.org. On Friday, June 17, 2022 at 3:10:16 PM UTC-5 181...@northsouth.edu wrote: > I have basic to intermediate knowledge on Django, but don't find any entry > level job to master my django knowledge in my country,

Re: its urgent...

2022-06-17 Thread Dylan Reinhold
I can tell you that your subject is probably going to keep anyone who can help from helping. Regards, Dylan On Fri, Jun 17, 2022, 10:10 Abhinandan K wrote: > is anybody know how to scrap all businesses from google maps and save into > csv with selenium and whenever search that business it

Lost connection to MySQL server during query

2022-06-17 Thread Larry Martell
I have a standalone python script (i.e. not part of a web app) that makes use of the ORM. I call djago.setup(), make some queries, then call a function that can take 8 hours or more to run. When the function returns I want to make more queries, but they fail with 'Lost connection to MySQL server

Re: CSRF issue in default login

2022-06-17 Thread Abul Kashim 1811949642
I have basic to intermediate knowledge on Django, but don't find any entry level job to master my django knowledge in my country, can any one suggest me where I can get some project or industry level job in django , please. I am badly need that On Friday, June 17, 2022 at 11:29:04 PM UTC+6

Re: CSRF issue in default login

2022-06-17 Thread Mike Kilmer
That sounds hopeful. Where do you put that config? Settings.py? On Friday, June 17, 2022 at 12:25:29 PM UTC-5 vicker...@gmail.com wrote: > I was having a similar issue after setting up https with certbot. After > searching around, I found adding this to settings worked. > > CSRF_TRUSTED_ORIGINS

Re: CSRF issue in default login

2022-06-17 Thread mike vickers
I was having a similar issue after setting up https with certbot. After searching around, I found adding this to settings worked. CSRF_TRUSTED_ORIGINS = ["https://yourdomain.com;, "https://www.yourdomain.com;] I'd be curious to hear from others, because I'm *not *an expert in how to best set up

Re: its urgent...

2022-06-17 Thread Julio Cojom
You can try with rpa framework, for rpa, is better if you use xpath Regards El El vie, 17 de jun. de 2022 a la(s) 11:10, Abhinandan K < abhinan...@snakescript.com> escribió: > is anybody know how to scrap all businesses from google maps and save into > csv with selenium and whenever search

its urgent...

2022-06-17 Thread Abhinandan K
is anybody know how to scrap all businesses from google maps and save into csv with selenium and whenever search that business it gave result of that business... also its important to me that how generate google maps api without billing... -- You received this message because you are

Re: About Specific User Login

2022-06-17 Thread Sebastian Jung
Hello, Yoz get per query userdata and then wrotes it as further contrext https://vsupalov.com/pass-context-to-django-cbv/ Then you can render this in your template. Abhinandan K schrieb am Fr., 17. Juni 2022, 18:27: > use django icontains > > On Fri, Jun 17, 2022, 9:27 PM Shubham Mendade >

Join Django Africa Chat Group

2022-06-17 Thread Joshua Olatunji
Join Django Africa whatsapp chat and have instance interaction for your questions Follow the link below. https://chat.whatsapp.com/IgJcwnZR9sr1Jatc5jnSx9 -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Re: About Specific User Login

2022-06-17 Thread Abhinandan K
use django icontains On Fri, Jun 17, 2022, 9:27 PM Shubham Mendade wrote: > I want to know that how django user module helps me to get the data of > specific user from lots of user to its dashboard after he/she logins > > -- > You received this message because you are subscribed to the Google

Re: CSRF issue in default login

2022-06-17 Thread rahul sharma
Html form like action form use On Fri, Jun 17, 2022, 21:23 Mike Kilmer wrote: > By the way, using Django 4.0. > > Thanks, Rahul. > > I believe this is a default Django template, and wouldn't the fact the the > page/form creates a cookie be a sign that that action triggered by `{% > crsf_token

I can't use shared server's Ip Address for run Django

2022-06-17 Thread saranphat roungkitrakran
I have to put my project to share sever for others can use it . I try to change allow_host become shared server's Ip Address ,but when I run, it occur "Error: That IP address can't be assigned to" ,so I want to ask how to solve this problem or other solutions. -- You received this message

About Specific User Login

2022-06-17 Thread Shubham Mendade
I want to know that how django user module helps me to get the data of specific user from lots of user to its dashboard after he/she logins -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

Re: CSRF issue in default login

2022-06-17 Thread rahul sharma
{% crsf_token %} use this action form down On Fri, Jun 17, 2022, 20:47 Mike Kilmer wrote: > Hi. > > I'm fairly new to Django. Here's what I need insight on: > > Local server, no issue. > > On production: CSRF 403 error on login. > > There's a cookie loaded on the login page containing

CSRF issue in default login

2022-06-17 Thread Mike Kilmer
Hi. I'm fairly new to Django. Here's what I need insight on: Local server, no issue. On production: CSRF 403 error on login. There's a cookie loaded on the login page containing csrftoken: pAFeeUI8YFXZ2PKRYxOTX1qz4Xgto42WVNi7FFvBlZDqcFLwQ2rdQvVeZBHFSpLW (Local and Session

Re: Using a lazy value in a queryset filter?

2022-06-17 Thread Sylvain
The form is used in a view, yes, like so: def objects_list(request): if request.method == "POST" and "delete" in request.POST: delete_form = MyForm(data=request.POST) if delete_form.is_valid(): if delete_form.cleaned_data["confirm"]:

Re: List Field in Django Model while using SQLite

2022-06-17 Thread Muhammad Juwaini Abdul Rahman
Did you read the forum thread? On Fri, 17 Jun 2022 at 20:21, Mukul Verma wrote: > Thanks but it would not work for me if you have any example code please > share i need to use that > > > On Friday, 17 June 2022 at 14:30:00 UTC+5:30 juw...@gmail.com wrote: > >> This could be helpful: >>

Re: List Field in Django Model while using SQLite

2022-06-17 Thread Mukul Verma
Thanks but it would not work for me if you have any example code please share i need to use that On Friday, 17 June 2022 at 14:30:00 UTC+5:30 juw...@gmail.com wrote: > This could be helpful: > https://forum.djangoproject.com/t/use-an-array-of-fields-with-sqlite/2320 > > On Fri, 17 Jun 2022 at

Re: how to deploy python django project using heroku

2022-06-17 Thread Mahesh Ghule
thank you sir ... On Friday, 17 June 2022 at 00:07:02 UTC+5:30 Mike Kilmer wrote: > Do you have your codebase tracked in a version tracking system like > Github? If you do, then, from within Heroku, you can use the Github > integration. > > On Thursday, June 16, 2022 at 11:01:52 AM UTC-5

Re: List Field in Django Model while using SQLite

2022-06-17 Thread Muhammad Juwaini Abdul Rahman
This could be helpful: https://forum.djangoproject.com/t/use-an-array-of-fields-with-sqlite/2320 On Fri, 17 Jun 2022 at 15:00, Mukul Verma wrote: > Hii Everyone, > Thanks for all the advice and suggestions. > currently i got stuck with a problem i have to store list of some data in > a specific

Re: is anybody know how to add multiple fields on html form when user click on + icon

2022-06-17 Thread DJANGO DEVELOPER
use jquery On Fri, Jun 17, 2022 at 12:08 PM Abhinandan K wrote: > for example- > fields are- > name,age,salary. + > and when user click on + sign same fields increased according to user > clicks on + sign.. > > -- > You received this message because you are subscribed to the Google Groups >

Re: is anybody know how to add multiple fields on html form when user click on + icon

2022-06-17 Thread Akash Verma
You can use js or jquery for that. On Fri, Jun 17, 2022, 12:38 PM Abhinandan K wrote: > for example- > fields are- > name,age,salary. + > and when user click on + sign same fields increased according to user > clicks on + sign.. > > -- > You received this message because you are subscribed to

is anybody know how to add multiple fields on html form when user click on + icon

2022-06-17 Thread Abhinandan K
for example- fields are- name,age,salary. + and when user click on + sign same fields increased according to user clicks on + sign.. -- 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

List Field in Django Model while using SQLite

2022-06-17 Thread Mukul Verma
Hii Everyone, Thanks for all the advice and suggestions. currently i got stuck with a problem i have to store list of some data in a specific field of the model may you please suggest me or if possible share code snippet. How can i store the list in the model field while using SQLite please.