Re: Need help in python Django project "online train ticket booking system"

2024-02-22 Thread Daniel Martinez
Hello, what is the problem you are experimenting? Canyou please provide code? On Mon, Feb 19, 2024, 9:21 AM Surya Santhosh wrote: > Need help in python Django project "online train ticket booking system" > > -- > You received this message because you are subscribe

Re: Need help in python Django project "online train ticket booking system"

2024-02-21 Thread Fasila Ali
I am Interested On Mon, 19 Feb 2024, 9:51 pm Surya Santhosh, wrote: > Need help in python Django project "online train ticket booking system" > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > T

Need help in python Django project "online train ticket booking system"

2024-02-19 Thread Surya Santhosh
Need help in python Django project "online train ticket booking system" -- 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 d

Re: Need help setting up my Django environment

2024-02-18 Thread kge...@gmail.com
**What Ryan said about incompatibility If you want to pick a particular version of python (say, 3.12) when you create an env use: conda create -n myEnv python==3.12 On Sunday, February 18, 2024 at 11:48:39 AM UTC-5 kge...@gmail.com wrote: > Saw this on stack overflow: >

Re: Need help setting up my Django environment

2024-02-18 Thread kge...@gmail.com
Saw this on stack overflow: https://stackoverflow.com/questions/70347099/error-installing-a-django-project-attrributeerror-module-collections-has-no-a Supports what Mordecai Etukudo said about version incompatability. *Type "help", "copyright", "credits" or "license" for more information. *

Re: Need help setting up my Django environment

2024-02-17 Thread Mordecai Etukudo
Comment you model. Py and the run if you still have the issue not this is to fine how where the issue if from On Sat, Feb 17, 2024, 1:38 PM Brigid Sang wrote: > I'm encoutering the below error, how can I fix this > > Traceback (most recent call last): > File

Need help setting up my Django environment

2024-02-17 Thread Brigid Sang
I'm encoutering the below error, how can I fix this Traceback (most recent call last): File "/home/brigid/.local/bin/django-admin", line 8, in sys.exit(execute_from_command_line()) ^^^ File

Re: hello forks, i need help

2023-08-17 Thread ivan harold
https://www.w3schools.com/django/django_admin_include_members.php explore the site maybe what you are ooking for is in there check this one. On Thursday, August 17, 2023 at 11:53:00 AM UTC-5 Abdoulaye SENE wrote: > the problem is i don't see users in admin.i only see groups. do not know >

Re: hello forks, i need help

2023-08-17 Thread Abdoulaye SENE
the problem is i don't see users in admin.i only see groups. do not know why. Le jeu. 17 août 2023 à 16:48, Abdoulaye SENE a écrit : > thanks a lot > > > Le jeu. 17 août 2023 à 16:38, ivan harold a > écrit : > >> https://www.w3schools.com/django/django_admin_create_user.php >> check this one

Re: hello forks, i need help

2023-08-17 Thread Abdoulaye SENE
thanks a lot Le jeu. 17 août 2023 à 16:38, ivan harold a écrit : > https://www.w3schools.com/django/django_admin_create_user.php > check this one out. > > On Thursday, August 17, 2023 at 8:26:29 AM UTC-5 Abdoulaye SENE wrote: > >> i have created a group named adminis. how to create users in

Re: hello forks, i need help

2023-08-17 Thread ivan harold
https://www.w3schools.com/django/django_admin_create_user.php check this one out. On Thursday, August 17, 2023 at 8:26:29 AM UTC-5 Abdoulaye SENE wrote: > i have created a group named adminis. how to create users in the group > using django admin > > -- You received this message because you

hello forks, i need help

2023-08-17 Thread Abdoulaye SENE
i have created a group named adminis. how to create users in the group using django admin -- 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

Re: need help

2023-07-05 Thread DieHardMan 300
On the server, change the following in settings DEBUG = True# django will tell what cause the error instead of error500 ALLOWED_HOST = ["*"]# this allow all hosts but you should do this only for testing most of the time, error 500 often cause from database connection

Re: need help

2023-07-05 Thread Bouka Largent
hello Le mar. 4 juil. 2023, 4:44, Theresa Taye a écrit : > Hello, > > You see a Server error because Debug is set to False. To know what the > actual error is, turn it back to True. Then when you are done debugging you > can change that especially if you are pushing to production. > > On Tue, 4

Re: need help

2023-07-04 Thread Theresa Taye
Hello, You see a Server error because Debug is set to False. To know what the actual error is, turn it back to True. Then when you are done debugging you can change that especially if you are pushing to production. On Tue, 4 Jul 2023 at 16:21, Abdoulaye SENE wrote: > thanks for the help. but

Re: need help

2023-07-04 Thread ALBERT ASHABA AHEEBWA
Server Error can be caused by many issues ranging from database queries to wrong urls. Turn debug to true and see what reasons are given . Are you in production or development? Best Regards, Albert Ashaba Aheebwa +256 781 435857 On Tue, 4 Jul 2023, 18:21 Abdoulaye SENE, wrote: > thanks for

Re: need help

2023-07-04 Thread Abdoulaye SENE
thanks for the help. but after writing ["*"] i see Server Error (500) Le mardi 4 juillet 2023 à 14:46:01 UTC, ALBERT ASHABA AHEEBWA a écrit : > Sorry I meant turn > DEBUG = True > > > > > Best Regards, > > Albert Ashaba Aheebwa > +256 781 435857 <+256%20781%20435857> > > On Tue, 4 Jul 2023,

Re: need help

2023-07-04 Thread ALBERT ASHABA AHEEBWA
Sorry I meant turn DEBUG = True Best Regards, Albert Ashaba Aheebwa +256 781 435857 On Tue, 4 Jul 2023, 17:44 ALBERT ASHABA AHEEBWA, < ashabaaheebwaalb...@gmail.com> wrote: > Go to your settings.py and look for allowed_hosts and make it > ALLOWED_HOSTS = ["*"] > > or better yet, if you are

Re: need help

2023-07-04 Thread ALBERT ASHABA AHEEBWA
Go to your settings.py and look for allowed_hosts and make it ALLOWED_HOSTS = ["*"] or better yet, if you are in development, turn DEBUG = False Best Regards, Albert Ashaba Aheebwa +256 781 435857 On Tue, 4 Jul 2023, 17:38 Abdoulaye SENE, wrote: > hello, > while programming, i see this

need help

2023-07-04 Thread Abdoulaye SENE
hello, while programming, i see this problem : " CommandError: You must set settings.ALLOWED_HOSTS if DEBUG is False." i wonder if someone can help me to fix it. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group

Re: Need help with Authenticating and Authorizing

2023-03-10 Thread Namanya Daniel
Right there, all the best On Fri, 10 Mar 2023 at 22:31, linda jean-philippe < jeanphilippe.li...@gmail.com> wrote: > Yes the user is saved and I can see it on the django admin page and no I > have not hashed the password. > > On Fri, Mar 10, 2023 at 1:33 PM Namanya Daniel > wrote: > >> 1. Have

Re: Need help with Authenticating and Authorizing

2023-03-10 Thread linda jean-philippe
Yes the user is saved and I can see it on the django admin page and no I have not hashed the password. On Fri, Mar 10, 2023 at 1:33 PM Namanya Daniel wrote: > 1. Have you tried to check from the django admin end, the user is not > saved? > 2. If the user is saved, did you create a hashed

Re: Need help with Authenticating and Authorizing

2023-03-10 Thread Namanya Daniel
1. Have you tried to check from the django admin end, the user is not saved? 2. If the user is saved, did you create a hashed password before saving data in your views? On Fri, 10 Mar 2023 at 21:15, linda jean-philippe < jeanphilippe.li...@gmail.com> wrote: > I created 2 accounts with the django

Re: Need help with Authenticating and Authorizing

2023-03-10 Thread linda jean-philippe
I created 2 accounts with the django admin page, but the credentials do not work on the login page. When I create new credentials with the register page I made, it doesn’t save. I think it’s supposed to save to the database.On Mar 10, 2023, at 1:06 PM, Namanya Daniel wrote:how have you saved

Re: Need help with Authenticating and Authorizing

2023-03-10 Thread Namanya Daniel
how have you saved your password in registration? On Fri, 10 Mar 2023 at 18:02, linda jean-philippe < jeanphilippe.li...@gmail.com> wrote: > I do not know what I am missing. My login page and register page have > rendered, but when I try to sign up with new credentials, it does not save. > And

Need help with Authenticating and Authorizing

2023-03-10 Thread linda jean-philippe
I do not know what I am missing. My login page and register page have rendered, but when I try to sign up with new credentials, it does not save. And on the Django Admin page, it says invalid password and username with each attempt. -- You received this message because you are subscribed to

Re: Need help

2023-02-22 Thread herve bineli
Hi Emmanuel, If you are on Macbook, you can use the excellent app: Dash https://kapeli.com/dash But if you are on Windows or Linux, you can use: Zeal https://zealdocs.org/ Best Regards, BINELI Arsene - binelima...@gmail.com -- You received this message because you are subscribed to the Google

Re: Need help

2023-02-22 Thread Michael Fladischer
Hi Emmanuel, Am 22.02.2023 um 00:46 schrieb Emmanuel Wilfried Ilboudo: Hi all !!! I would like to have the Django documentation in French to learn offline. I'm in a place where internet access is a real problem. Thanks in advance !!! you can get the whole documentation in french as a ZIP

RE: Need help

2023-02-21 Thread Mike Dewhirst
https://explore.transifex.com/django/django-docs/Might helpM--(Unsigned mail from my phone) Original message From: Emmanuel Wilfried Ilboudo Date: 22/2/23 13:08 (GMT+10:00) To: Django users Subject: Need help Hi all !!! I would like to have the Django documentation

Need help

2023-02-21 Thread Emmanuel Wilfried Ilboudo
Hi all !!! I would like to have the Django documentation in French to learn offline. I'm in a place where internet access is a real problem. Thanks in advance !!! -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group

Re: Please i need help in creating a Login page with Django

2023-01-20 Thread Aditi Dwivedi
You have to first create a superuser in your django project. It is same as creating a root user in Linux or admin user in windows. Super user can be created as.. 1. Run command in django terminal Python manage.py createsuperuser 2. It will ask for user name, emai and password. 3. Run

Re: Please i need help in creating a Login page with Django

2023-01-19 Thread M Adnan
Join this group to discuss your issues with developers link below , https://chat.whatsapp.com/ICXdXOrbgoNFQTbKxalZD1 On Thu, 19 Jan 2023, 6:21 pm Radhika Soni, wrote: > Hello, > You can take help from udemy or coursera courses. > > On Thu, Jan 19, 2023, 4:36 PM Hubert Kanyamahanga > wrote: >

Re: Please i need help in creating a Login page with Django

2023-01-19 Thread ritik sahoo
Ofcourse On Thu, 19 Jan, 2023, 7:40 pm Sebastian Jung, wrote: > I think this is a good start or? > > https://github.com/earthcomfy/Django-registration-and-login-system > > Namanya Daniel schrieb am Do., 19. Jan. 2023, > 15:00: > >> Explain where you’re failing exactly, is it views, forms,

Re: Please i need help in creating a Login page with Django

2023-01-19 Thread Sebastian Jung
I think this is a good start or? https://github.com/earthcomfy/Django-registration-and-login-system Namanya Daniel schrieb am Do., 19. Jan. 2023, 15:00: > Explain where you’re failing exactly, is it views, forms, templates or > models > > On Thu, 19 Jan 2023 at 01:56, Michael R. KOOMSON >

Re: Please i need help in creating a Login page with Django

2023-01-19 Thread Namanya Daniel
Explain where you’re failing exactly, is it views, forms, templates or models On Thu, 19 Jan 2023 at 01:56, Michael R. KOOMSON wrote: > I am trying everything possible to create a basic login page with Django., > i have tried so many videos and online tutorial, but still can't make > anything

Re: Please i need help in creating a Login page with Django

2023-01-19 Thread ritik sahoo
If u will follow geekyshows channel on YouTube your basic must be cleared On Thu, 19 Jan, 2023, 6:51 pm Radhika Soni, wrote: > Hello, > You can take help from udemy or coursera courses. > > On Thu, Jan 19, 2023, 4:36 PM Hubert Kanyamahanga > wrote: > >> Please share what you have been able to

Re: Please i need help in creating a Login page with Django

2023-01-19 Thread Radhika Soni
Hello, You can take help from udemy or coursera courses. On Thu, Jan 19, 2023, 4:36 PM Hubert Kanyamahanga wrote: > Please share what you have been able to do, where you are blocked and from > there we can guide you, because, we don't even know which videos you have > been viewing! > > On

Re: Please i need help in creating a Login page with Django

2023-01-19 Thread Hubert Kanyamahanga
Please share what you have been able to do, where you are blocked and from there we can guide you, because, we don't even know which videos you have been viewing! On Wednesday, January 18, 2023 at 11:56:45 PM UTC+1 macca...@gmail.com wrote: > I am trying everything possible to create a basic

Please i need help in creating a Login page with Django

2023-01-18 Thread Michael R. KOOMSON
I am trying everything possible to create a basic login page with Django., i have tried so many videos and online tutorial, but still can't make anything meaningful out of it. Can anyone please take me through a systematic process please, since i am new here and want to take Django to be my

Re: Need help Scraping a couple of websites

2022-12-26 Thread John McClain
I’m not needing to scrape anything illegal I need product details and associated images from collections on furniture mfg websites I have permission to do so no issues with data being collected I need data scraped to be cleansed and delivered in csv I do not need the scraping routine designed

Re: Need help Scraping a couple of websites

2022-12-26 Thread Raj Mandaviya
Thank you for the info. Does this mean I can make a repo for the Scrapper I created with Flask on GitHub and not be affected? On Friday, December 23, 2022 at 11:41:27 PM UTC+5:30 bscho...@schollnick.net wrote: > > I can scrap for you. I just created an IMDB scrapper(which is illegal, > so not

Re: Need help Scraping a couple of websites

2022-12-23 Thread Michael Starr
Yeah it's not a DDOS or anything. They are providing the movie information on their site, from their databases, as-is and without warranty. That means you can do whatever you want with it to the fullest extent of criminal law. But maybe I have no idea what I'm talking about. Cheers, Mike On

Re: Need help Scraping a couple of websites

2022-12-23 Thread Benjamin Schollnick
> I can scrap for you. I just created an IMDB scrapper(which is illegal, so not > going to post the code anywhere but mailed IMDb about it) in the flask. > Also, have experience in Django and web scrapping using bs4. illegal? Against Copyright, and maybe not permitted by End-User License.

Re: Need help Scraping a couple of websites

2022-12-23 Thread Raj Mandaviya
...@gmail.com Thank you On Friday, December 16, 2022 at 10:41:39 PM UTC+5:30 jmccla...@gmail.com wrote: > Hello, > > I need help scraping a couple of commercial websites to collect product > data for use in e-commerce store. > > Willing to pay modest fee for the help

Re: Need help Scraping a couple of websites

2022-12-16 Thread Paul Kudla (SCOM.CA Internet Services Inc.)
ttp://www.scom.ca> 004-1009 Byron Street South Whitby, Ontario - Canada L1N 4S3 Toronto 416.642.7266 Main 1.866.411.7266 Fax 1.888.892.7266 Email p...@scom.ca On 2022-12-16 12:11 p.m., John McClain wrote: Hello, I need help scraping a couple of commercial websites to collect product data for us

Need help Scraping a couple of websites

2022-12-16 Thread John McClain
Hello, I need help scraping a couple of commercial websites to collect product data for use in e-commerce store. Willing to pay modest fee for the help. Get in touch if interested... -- You received this message because you are subscribed to the Google Groups "Django users&q

Re: hello guys I need help

2022-08-30 Thread Rotimi Michael james
my name is engr rotimi michael james , i think i can help you please just make the model one to one relations , that is one user to a page and a page to one user, hope it help. On Mon, Aug 29, 2022 at 3:06 PM ISTEEN ISAC wrote: > I am beginner , how to redirect different types of pages to

Re: hello guys I need help

2022-08-30 Thread Baber Ibrar
Please share your query On Monday, August 29, 2022 at 9:02:05 PM UTC+5 bod...@gmail.com wrote: > please I'm a starter on python and django, i need some to help me with an > online class training. > > Thank > Moses > > On Monday, August 29, 2022 at 3:06:26 PM UTC+1 istee...@gmail.com wrote: >

Re: hello guys I need help

2022-08-30 Thread Joshua Oriakhi
Hello Bode. When you say different types of pages what do you mean? Do you mean you want users to see pages specific to them? For instance, if my name is Joshua, you want me to see a page with my name and if your name is Bode, you want me to see a page with your name. Is this what you mean? On

Re: hello guys I need help

2022-08-29 Thread bode moses
please I'm a starter on python and django, i need some to help me with an online class training. Thank Moses On Monday, August 29, 2022 at 3:06:26 PM UTC+1 istee...@gmail.com wrote: > I am beginner , how to redirect different types of pages to different > users after login in django >

hello guys I need help

2022-08-29 Thread ISTEEN ISAC
I am beginner , how to redirect different types of pages to different users after login in django ? -- You received this message because you are subscribed to the

Re: I need help with saving data to django database.

2022-08-17 Thread Anh Nguyen
Problem is you try to use sth you can’t control it. You should not modify admin page. Try to create a new one as your knowledge. That way keep you learn and stay away unpredictable issues. On Wed, 17 Aug 2022 at 20:02 Paul Kudla (SCOM.CA Internet Services Inc.) < p...@scom.ca> wrote: > > ok i had

Re: I need help with saving data to django database.

2022-08-17 Thread Paul Kudla (SCOM.CA Internet Services Inc.)
ok i had a hudge problem when writing my invoice system in general you need to over ride the save defination in the admin and models.py files this was never clearly documented in django. I use inlines so the code gets really complicated really quickly i have given my code you will need

I need help with saving data to django database.

2022-08-16 Thread Viando Donwasta
Hi, May I get help with this project? I am new to Django. Below is my view and model for your review. class Invoice(models.Model): InvoiceNo = ShortUUIDField(length=16, prefix="GN_", alphabet="1234567890", primary_key=True, ) InvoiceDate =

Re: Need help on reducing cognitive complexity

2022-07-21 Thread Michael Thomas
Personally I think the code has a very weird "smell"... Assuming you don't have any way of rewriting the calling code and are stuck with editing this single method, I'd suggest something along the lines of: @staticmethod def in_circle_check(obj_type, item, uuid): if obj_type not in ['trees',

Re: Need help on reducing cognitive complexity

2022-07-21 Thread Shaheed Haque
The first step is to ensure you have a precise and accurate understanding of the code before optimization. Right now, I am suspicious of at least 2 things in the code. First, the function returns any of {None, -1, True}. While this is certainly allowed, is this correct? If not, please correct the

Re: Need help on reducing cognitive complexity

2022-07-21 Thread Mike Dewhirst
On 21/07/2022 3:52 pm, Sencer Hamarat wrote: Hi everyone, I have a code block with high cognitive complexity below:     @staticmethod     def in_circle_check(obj_type, item, uuid, item_is_array=False): Partly because the args seem weird. Try writing a docstring which says what the method

Re: Need help on reducing cognitive complexity

2022-07-21 Thread Agnese Camellini
The only things that comes into my mind is taking away that first if which is redundant with the third block. An other way might be to include all the if in a big switch... My 2 cents Agnese On Thu, 21 Jul 2022 at 07:53, Sencer Hamarat wrote: > Hi everyone, > > I have a code block with high

Need help on reducing cognitive complexity

2022-07-20 Thread Sencer Hamarat
Hi everyone, I have a code block with high cognitive complexity below: @staticmethod def in_circle_check(obj_type, item, uuid, item_is_array=False): if obj_type not in ['trees', 'flowers']: return None plant = get_plant_with_circles(uuid) if not

Re: Need help

2022-07-04 Thread K Wong
I've implemented this sort of thing in the past. Without knowing your specific case, I guess that you have a parent model (ie. Pizza) and 1-n related child models (ie. Topping). My advice is to redesign your flow to create a Pizza first then attach 1-n Topping entities to it. This would

Need help

2022-06-22 Thread Rohit Lohar
The below image consists of a form layout the main form has it's model defined and the subform has it's own model defined but I am getting problem that how should I implement and also the subform is dynamic so how can I implement it using htmx. Your help is appreciated. Thank you -- You

Re: Need help

2022-06-01 Thread Lalit Suthar
thanks for sharing @Antonis Christofides I was looking for a resource like this for some time :D On Thu, 2 Jun 2022 at 10:57, Antonis Christofides < anto...@antonischristofides.com> wrote: > Hello, > > If, as I understand, you don't know anything about deployment, a possible > starting point is

Re: Need help

2022-06-01 Thread Antonis Christofides
Hello, If, as I understand, you don't know anything about deployment, a possible starting point is the book at https://djangodeployment.com (disclaimer: I am the author). It doesn't cover docker, and it also doesn't cover continuous development with gitlab. But you can start with the basics

Need help

2022-06-01 Thread Théodore KOSSI
Hello everyone, I want your help to deploy my django app. I have a ubuntu server. My django project is pushing to gitlab. So I want to deploy my app django to my ubuntu server using Gitlab and docker Any help enjoy me Thanks. -- theodoros17@python-developer -- You received this message because

Need help

2022-03-07 Thread loic ngounou
Please how to make a document archiving system with django rest framework -- 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

Re: need help

2022-03-02 Thread shubham goyal
Can help you make one. On Tuesday, 1 March 2022 at 22:13:06 UTC+5:30 ngounou...@gmail.com wrote: > Please i need a management medical record app of patients built in django > using REST API -- You received this message because you are subscribed to the Google Groups "Django users" group. To

need help

2022-03-01 Thread loic ngounou
Please i need a management medical record app of patients built in django using REST API -- 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

Re: Need help in User log in, someone please help

2022-02-23 Thread Raj
Hi, Thanks for the response, I have tried to print the username before creating the user, but it did not work. I have also tried to use pdb that also didn't work. How to do it can give proper instructions?? I have searched about it on google but have not received any relevant answer. On

Re: Need help in User log in, someone please help

2022-02-23 Thread waqar khan
share screen shot On Wed, Feb 23, 2022 at 12:24 PM Antonis Christofides < anto...@antonischristofides.com> wrote: > You have this statement: > user = User.objects.create_user(username=username, email=email, > password = password) > > Just before this statement, you need to insert a statement

Re: Need help in User log in, someone please help

2022-02-22 Thread vijay chourey
Hi Raj, Error is showing due to the blank value in user name, please try to print username before registration if it's blank please check form fields. Once done you can directly login your account with "auth.login(request,user) On Wed, 23 Feb, 2022, 12:22 pm Antonis Christofides, <

Re: Need help in User log in, someone please help

2022-02-22 Thread Jitendra kumar Patra
7008080545 DM . On Wed, 23 Feb 2022, 12:22 pm Antonis Christofides, < anto...@antonischristofides.com> wrote: > You have this statement: > user = User.objects.create_user(username=username, email=email, > password = password) > > Just before this statement, you need to insert a statement

Re: Need help in User log in, someone please help

2022-02-22 Thread Antonis Christofides
You have this statement:     user = User.objects.create_user(username=username, email=email, password = password) Just before this statement, you need to insert a statement that will enable you to examine the value of the "username" statement. Something like this:     print(username)    

Re: Urgent need help regarding to localhost

2021-12-06 Thread Bernard Mallala
What troubleshooting have you attempted so far? What is the composition of your development environment? Have you checked if the port is open to eliminate firewall and or network related issues? Have you checked to make sure that your postgres database server is running? Are you able to connect

Urgent need help regarding to localhost

2021-12-06 Thread CHANDNI SINGH
-- 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 django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit

Re: Re : Need help in django database related

2021-10-14 Thread Richard Dushime
i Think using Django u will create models then register them in admin, for saving data /registration u will create a form that will be posting data in database may be u can add in an email scripts if u want to always be aware of who has registered for an event On Wed, Oct 13, 2021 at 8:37

Re: Re : Need help in django database related

2021-10-14 Thread MR INDIA
Maybe you need to learn db relationships in django models and forms, Learn about db : https://www.webforefront.com/django/setuprelationshipsdjangomodels.html And inspect source code of this project: https://github.com/sajib1066/django-event-management Hope this helps, A fellow django

Re : Need help in django database related

2021-10-13 Thread Avi shah
I want to build an platform where admin can add events and I want end users to register for that event , so how do I save the data/registration of the user for that particular event , how can i create dynamic tables like 1 table for 1 event or is there some other logic behind it? Thanks in

Need help for offline data sync of ManyToMany relation table

2021-09-22 Thread Shuham Bansal
Hi, I want to know about, how we can manage ManyToMany relation table for offline data sync, where frontend pass the data as different model for ManyToMany relation field. Can anyone suggest me some tips. Thanks -- You received this message because you are subscribed to the Google Groups

Re: need help integrating SSL with react/django web app

2021-09-21 Thread hey there
hi I don't want to deep analysis of how can Cloudflare bring more preferred than normal cartbot but most likely it is the way it is built. it proxied connections offer tls /mtls edge certificate etc. which is known to us all but it is also there that it maintains its own CA and CA record

Re: need help integrating SSL with react/django web app

2021-09-20 Thread David Nugent
On Tue, Sep 21, 2021 at 2:11 AM hey there wrote: 1. oracle autonomous linux's epl dont have certbot > pip install certbot You already have pip installed if you're running Django. This takes all of 10-15 seconds... and > 2. I mostly like Cloudflare than certbot because Cloudflare has some own

Re: need help integrating SSL with react/django web app

2021-09-20 Thread hey there
1. oracle autonomous linux's epl dont have certbot and 2. I mostly like Cloudflare than certbot because Cloudflare has some own methods to maintain ssl certificate On Mon, Sep 20, 2021 at 2:37 PM FIRDOUS BHAT wrote: > Why don't you explore certbot? > > On Sun, Sep 19, 2021, 8:14 PM MR INDIA

Re: need help integrating SSL with react/django web app

2021-09-20 Thread FIRDOUS BHAT
Why don't you explore certbot? On Sun, Sep 19, 2021, 8:14 PM MR INDIA wrote: > Select os and server and it will show the docs, you have to first shutdown > the server then after following the docs restart the server. > > > On Saturday, 18 September 2021 at 19:33:31 UTC+5:30 hey there wrote: >

Re: need help integrating SSL with react/django web app

2021-09-19 Thread MR INDIA
Select os and server and it will show the docs, you have to first shutdown the server then after following the docs restart the server. On Saturday, 18 September 2021 at 19:33:31 UTC+5:30 hey there wrote: > hey > > I am with Cloudflare ssl with httpd autonomous linux with mos_wsgi. > foe

Re: need help integrating SSL with react/django web app

2021-09-18 Thread hey there
hey I am with Cloudflare ssl with httpd autonomous linux with mos_wsgi. foe Django you need mod_wsgi with all which is tricky. On Sat, Sep 18, 2021 at 7:18 PM MR INDIA wrote: > See this > https://certbot.eff.org/lets-encrypt/ubuntufocal-nginx Use letsencrypt if > you have shell access > On

Re: need help integrating SSL with react/django web app

2021-09-18 Thread MR INDIA
See this https://certbot.eff.org/lets-encrypt/ubuntufocal-nginx Use letsencrypt if you have shell access On Saturday, 18 September 2021 at 02:41:54 UTC+5:30 hey there wrote: > > python 3.2.6 > django 3.2.7 > cx_oracle 8 > > > > On Sat, 18 Sep 2021, 2:25 am hey there, wrote: > >> hi >> >> i am

Re: need help integrating SSL with react/django web app

2021-09-17 Thread hey there
python 3.2.6 django 3.2.7 cx_oracle 8 On Sat, 18 Sep 2021, 2:25 am hey there, wrote: > hi > > i am also stuck > > On Monday, May 10, 2021 at 12:21:25 AM UTC+5:30 jmccla...@gmail.com wrote: > >> Hello Ammar, >> >> we're stuck, have been for days >> >> We have nginx set in ec2 instance but

Re: need help integrating SSL with react/django web app

2021-09-17 Thread hey there
hi i am also stuck On Monday, May 10, 2021 at 12:21:25 AM UTC+5:30 jmccla...@gmail.com wrote: > Hello Ammar, > > we're stuck, have been for days > > We have nginx set in ec2 instance but cannot get the ssl to slip in. > > I copied in Divy who is also working to get this solved > > any help

Re: Need help in converting the key value pairs of JSON data into data types.

2021-08-11 Thread Kasper Laudrup
On 11/08/2021 21.20, Franck Tchouanga wrote: > I can help you. > Help me with what? Kind regards, Kasper Laudrup -- 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

Re: Need help in converting the key value pairs of JSON data into data types.

2021-08-11 Thread Franck Tchouanga
I can help you. On Wed, Aug 11, 2021, 6:00 PM Kasper Laudrup wrote: > On 11/08/2021 15.54, chinna wrote: > > Hi All, > > > > I am actually working on a use case where I have to convert the JSON > > data into a dictionary and from that I will have to replace all the > > keys and values to the

Re: Need help in converting the key value pairs of JSON data into data types.

2021-08-11 Thread Kasper Laudrup
On 11/08/2021 15.54, chinna wrote: > Hi All, > > I am actually working on a use case where I have to convert the JSON > data into a dictionary and from that  I will have to replace all the > keys and values to the data types. The data type is returned as a string with the builtin type()

Need help in converting the key value pairs of JSON data into data types.

2021-08-11 Thread chinna
Hi All, I am actually working on a use case where I have to convert the JSON data into a dictionary and from that I will have to replace all the keys and values to the data types. For example: input_dict = {'segment_idenifier': 'Segment 2', 'exposed_pipe_outside_diam': 4,

Re: Need help on RedirectView

2021-06-20 Thread Hello Singh
Thanks, David Sir It help me a lot. On Sun, 20 Jun 2021, 18:21 David Nugent, wrote: > It is just a method on the Article model. Don't copy-paste what is there, > understand what it is doing. > > In this *example*, update_counter() will be defined in > Article(models.Model), probably in

Re: Need help on RedirectView

2021-06-20 Thread David Nugent
It is just a method on the Article model. Don't copy-paste what is there, understand what it is doing. In this *example*, update_counter() will be defined in Article(models.Model), probably in models.py in the app. You obliged to use anything like this in your redirect. HTH, On Sun, Jun 20,

Re: Desperately need help.

2021-06-16 Thread Ken Smith
Thank you very much they are very much aware that there is a problem with that page and and they seemed not be able to fix it for a week's now. I have contacted them time and time again about it. Actually I am beginning to think that they have at that way on purpose of that they don't have to pay

Re: Desperately need help.

2021-06-16 Thread Krish M
Ken, Base on what you're asking, and from the source code (view-source) & screenshot, I don't think you have access to the right code to make the fix. Maybe contacting safewayfx.com and letting them know their platform has a bug? If they are unwilling to fix their backend bug, then there is

Re: Desperately need help.

2021-06-15 Thread Nikeet NA
In your withdraw view you have return render this should be missing check inside if statements or inside your custom logic which you have written without seeing the actual code its hard to tell. On Wednesday, 16 June 2021 at 03:14:26 UTC+5:30 Ken Smith wrote: > jul, thank you so very much for

Re: Desperately need help.

2021-06-15 Thread Ken Smith
jul, thank you so very much for your very simple and honest answer. This was the best response I could have ever received from anyone and I appreciate it. I'm getting a bit old at 66 it seems my brain doesn't work as good as it did even 10 years ago for learning something as difficult as

Re: Desperately need help.

2021-06-15 Thread Ken Smith
Kasper, I am not sure of anything at this point. As for the denigrating of the Safeway programmers this has been going on for quite some time and I have money in that account that I am unable to withdraw because the failure of the page for withdrawal. And no I'm not sure of anything about

Re: Desperately need help.

2021-06-15 Thread Julio Cojom
Pretty easy to be honest. The web page need an http response and it's give none instead. :) If you don't know about the code, maybe you should hire a developer or learn by yourself. El mar., 15 de junio de 2021 3:14 p. m., Ken Smith escribió: > There is the issue to solve that is the result

Re: Desperately need help.

2021-06-14 Thread Jacob Greene
Lol what do you expect anyone to do? You just post some random HTML, zero code, no backtrace, nothing to even indicate there is an issue that someone could solve even IF they were willing... This has nothing to do with Django. I don't understand what you thought was going to happen. This is

  1   2   3   4   5   6   7   8   9   10   >