Re: Hi Guys! We are developing a service that solves the problems of developers:

2025-01-10 Thread Alex Sonar
@Otecina Thank you for the selection and feedback, I really appreciate it! On Thursday, January 9, 2025 at 11:39:48 PM UTC+3 Otecina wrote: > Points 3 and 4 are good projects. > > On Tue, Jan 7, 2025, 9:18 PM Alex Sonar wrote: > >> >>- Search and re-explore of open source projects in Python

Re: Hi Guys! We are developing a service that solves the problems of developers:

2025-01-09 Thread Otecina
Points 3 and 4 are good projects. On Tue, Jan 7, 2025, 9:18 PM Alex Sonar wrote: > >- Search and re-explore of open source projects in Python from several >sources simultaneously. >- Instant receipt of a high-quality response that exactly matches the >request criteria with the ex

Re: Hi need a solution

2022-11-08 Thread Mh Raffi
Hi Thanks for the reply. Found the solution yesterday, as the issue was caused due to # STATICFILES_STORAGE = "whitenoise.storage.CompressedManifestStaticFilesStorage" *Only thing causing a problem now is the collectstatic is collecting the static files and its in DIR c:\\user.* *All my images and

Re: Hi need a solution

2022-11-07 Thread sham khan
Check the logs I am certain it will talk about DB. do a migrate first. Once you delete the DB, the db is not created automatically On Mon, Nov 7, 2022, 9:37 PM Mh Raffi wrote: > > I have deployed to post g res p g admin4 and deleted db. s q lite from > Django. and set my allowed host =['*'] > >

Re: Hi need a solution

2022-11-07 Thread 'Kasper Laudrup' via Django users
On 07/11/2022 08.20, Mh Raffi wrote: I have deployed to post g res p g admin4 and deleted db. s q lite from Django. and set my allowed host =['*'] Am getting server [500]. if any help will be appreciated You need to look in your log files to find the cause of the 500 error. That will mak

Re: Hi need a solution

2022-11-07 Thread kateregga julius
First check the spelling of your user. If it fails take a screenshot of what is played in your console. It will help in getting for your a clear response On Mon, Nov 7, 2022, 7:08 PM Mh Raffi wrote: > > I have deployed to post g res p g admin4 and deleted db. s q lite from > Django. and set my

Re: Hi guys how to run pyscript on local webserver without using cdn ljnk

2022-08-01 Thread Abdul Qoyyuum
Download it from https://pyscript.net/ and load it on your local webserver. On Fri, Jul 29, 2022 at 10:59 PM Ad Tariq wrote: > > > Sent from my Huawei Mobile > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this grou

Re: Hi guys how to run pyscript on local webserver without using cdn ljnk

2022-07-29 Thread Sebastian Jung
Is it a joke? Please write a description which Problem you have... Ad Tariq schrieb am Fr., 29. Juli 2022, 16:58: > > > Sent from my Huawei Mobile > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop

Re: Hi to all how to implement Search option in website?

2022-07-23 Thread Lalit Suthar
you can try django-filters also for more complex use cases https://django-filter.readthedocs.io/en/stable/ On Sat, 23 Jul 2022 at 22:09, Lakshyaraj Dash wrote: > You can do something like shown in the screenshot below > > Thanks and Regards > Lakshyaraj Dash > > On Sat, Jul 23, 2022, 21:59 Mahen

Re: Hi, I am learning Django, I am stuck at one place and can't over come after many days

2022-01-19 Thread Leo guitar girl
I have sent you an invitation On Wed, Jan 19, 2022 at 9:54 AM Vkash Poudel wrote: > can we connect via email so that i can share my codes regarding Time basis > OTP Generation and OTP Verification and activate user's account using pyotp. > > > > > > > > > > > > > > > > > > > > > > > > > > > > >

Re: Hi, I am learning Django, I am stuck at one place and can't over come after many days

2022-01-19 Thread Leo guitar girl
yeah sure On Wed, Jan 19, 2022 at 9:54 AM Vkash Poudel wrote: > can we connect via email so that i can share my codes regarding Time basis > OTP Generation and OTP Verification and activate user's account using pyotp. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >

Re: Hi, I am learning Django, I am stuck at one place and can't over come after many days

2022-01-18 Thread Vkash Poudel
can we connect via email so that i can share my codes regarding Time basis OTP Generation and OTP Verification and activate user's account using pyotp.

Re: Hi, I am learning Django, I am stuck at one place and can't over come after many days

2022-01-18 Thread Leo guitar girl
I have not used any library. I have done manual OTP verification by using Rand library as told in the tutorial. On Tue, Jan 18, 2022 at 9:00 PM Vkash Poudel wrote: > first of what did you use to generate otp. If you've used pyotp libraries > then you can verify otp in simple step and the documen

Re: Hi, I am learning Django, I am stuck at one place and can't over come after many days

2022-01-18 Thread Leo guitar girl
I have changed the code as you suggested. def OTPverify(request): if request.method == 'POST': email = request.POST.*get*['email'] otp = request.POST.*get*['otp'] But now it gives another error, [image: image.png] On Tue, Jan 18, 2022 at 10:10 PM Bernard Mallala wrote:

Re: Hi, I am learning Django, I am stuck at one place and can't over come after many days

2022-01-18 Thread Jasur Suyunov
Hello my friend Sesh, 18-yan, 2022, 7:50 TK Leo guitar girl : > I am following the tutorial from LearnVern.com > > > https://www.learnvern.com/python-tutorial-django/project-implementation-part2 > > I have followed ditto as taught in the tutorial but the trainer has no > issue and I have this iss

Re: Hi, I am learning Django, I am stuck at one place and can't over come after many days

2022-01-18 Thread Abubakar Siddique
Hi, Hope you are well Did you successfully find the bug or not here is my whatsapp number You can contact here 923158090326 Thanks On Tue, Jan 18, 2022 at 8:32 AM Leo guitar girl wrote: > Oh, I apologize. I had pasted the error code here don't know why it was > not sent. > Actually, I am tr

Re: Hi, I am learning Django, I am stuck at one place and can't over come after many days

2022-01-18 Thread Bernard Mallala
In your model, be sure to address defaults and required values such that something is passed or be user to validate. Replace request.POST[''] With request.POST.get('') For example request.POST['otp'] TO request.POST.get['otp'] On Tuesday, January 18, 2022 at 9:00:41 AM UTC-7 bikash...@g

Re: Hi, I am learning Django, I am stuck at one place and can't over come after many days

2022-01-18 Thread Vkash Poudel
first of what did you use to generate otp. If you've used pyotp libraries then you can verify otp in simple step and the documentation is good in pyotp. On Tue, Jan 18, 2022 at 8:35 PM Leo guitar girl wrote: > I am following the tutorial from LearnVern.com > > > https://www.learnvern.com/python-

Re: Hi, I am learning Django, I am stuck at one place and can't over come after many days

2022-01-18 Thread Leo guitar girl
I am following the tutorial from LearnVern.com https://www.learnvern.com/python-tutorial-django/project-implementation-part2 I have followed ditto as taught in the tutorial but the trainer has no issue and I have this issue. I am sharing the views.py code also from django.shortcuts import rende

Re: Hi, I am learning Django, I am stuck at one place and can't over come after many days

2022-01-18 Thread Kasper Laudrup
On 18/01/2022 04.31, Leo guitar girl wrote: Oh, I apologize. I had pasted the error code here don't know why it was not sent. Actually, I am trying to create a job portal by seeing a tutorial. Now I am at the step of verifying OTP. OTP is generated successfully in the database. But when I enter

Re: Hi, I am learning Django, I am stuck at one place and can't over come after many days

2022-01-16 Thread Kasper Laudrup
On 16/01/2022 11.03, Leo guitar girl wrote: *This is the error I am getting at OTP verification step. Please guide me where I am wrong. * * No one here would have any idea what "OTP verification step" you are talking about. You haven't written anything about what you are trying to achieve

Re: Hi I have been facing this problem for days now. Basically I am trying to send emails. I tried toggling less secured, now am using app passwords. But still does not work. Pls help I ony get this e

2021-12-19 Thread Hussein Naim
hey , this error can be solved when you turn on less app seucrty and useing app password in google account(gmail) في الأحد، 19 ديسمبر 2021 في تمام الساعة 4:37:00 ص UTC+3، كتب oluwadam...@gmail.com رسالة نصها: > [image: Screenshot (50).png] > -- You received this message because you are subscr

Re: Hi I have been facing this problem for days now. Basically I am trying to send emails. I tried toggling less secured, now am using app passwords. But still does not work. Pls help I ony get this e

2021-12-19 Thread Kasper Laudrup
Hi Oluwa, Before trying to write code for sending emails, try to learn how to write one yourself. There's a difference between the "Subject" header and the email body. Seems like you've written the entire body of the email in the "Subject" field. Please don't do that. After learning that,

Re: Hi, How can I implement Microservices and Serverless with Django on AWS?

2021-10-31 Thread Edchel Stephen Nini
Thank you for your reply. Will check this links out! Thanks a lot 😀 On Sat, Oct 30, 2021, 9:29 PM MR INDIA, wrote: > Microservices can be implemented via APIs Rest Or Graphql it is your > choice and as a matter of fact Django can run server less infrastructures. > See this talk about server les

Re: Hi, i had question in django rest framework

2021-10-30 Thread MR INDIA
see the license page On Saturday, 30 October 2021 at 17:55:09 UTC+5:30 kkwaq...@gmail.com wrote: > I am waqar khan > I am from Maharashtra in thane city > i am looking for job python web developer > Please recommend any job. > > > On Fri, Oct 29, 2021 at 10:16 PM taxijjang wrote: > >> Hello I

Re: Hi, How can I implement Microservices and Serverless with Django on AWS?

2021-10-30 Thread MR INDIA
Microservices can be implemented via APIs Rest Or Graphql it is your choice and as a matter of fact Django can run server less infrastructures. See this talk about server less with Django: https://youtu.be/oYy9_4fm56o or this tutorial: https://youtu.be/WaiL4sbaj_o Microservices : https://youtu

Re: Hi, i had question in django rest framework

2021-10-30 Thread waqar khan
I am waqar khan I am from Maharashtra in thane city i am looking for job python web developer Please recommend any job. On Fri, Oct 29, 2021 at 10:16 PM taxijjang wrote: > Hello I am a backend developer who is developing python django. > I sent you an e-mail because I had a question. > Currentl

Re: Hi, i had question in django rest framework

2021-10-29 Thread Sunil Gyawali
I really want to work in django On Fri, Oct 29, 2021, 10:15 PM taxijjang wrote: > Hello I am a backend developer who is developing python django. > I sent you an e-mail because I had a question. > Currently, my company provides web services using pure django. > As the company grew bigger and big

Re: Hi How to setup mod_wsgi in httpd and ssl of cloudflare within oracle autonomous Linux 7.9?

2021-09-18 Thread hey there
django 3.2.7 cx_oracle 8 oel 7.9 python 3.2.7 On Saturday, September 18, 2021 at 2:25:58 AM UTC+5:30 hey there wrote: > Hi > > > > How to setup mod_wsgi in httpd and ssl of cloudflare within oracle > autonomous Linux 7.9? > -- You received this message because you are subscribed to the Goog

Re: hi

2021-09-14 Thread Dev Burna
Hello Sent from my iPhone > On Sep 14, 2021, at 2:43 PM, Jonathan MBADOU wrote: > > hi > -- > 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-user

Re: Hi django

2021-06-24 Thread DJANGO DEVELOPER
muhammad haris salamat just make a form in your template, then have a name='any name here' and then make a view in which you have to get the name in the following way. query = request.POST.get('any name here') and then do this: value = ModelName.objects.filter(Q(model_field = query) On Thu, Jun 2

Re: Hi django

2021-06-24 Thread muhammad haris salamat
Hi all can u help me plz how I can use filter with Contain query in Django I wanna fetch all data from my database with the help of filter query On Thu, 24 Jun 2021, 9:17 pm Richard Dushime, wrote: > THANK U I HAVE DONE TO FIX IT ITS NOW WORKING > > On Thu, Jun 24, 2021 at 6:04 PM Julio Cojom >

Re: Hi django

2021-06-24 Thread Richard Dushime
THANK U I HAVE DONE TO FIX IT ITS NOW WORKING On Thu, Jun 24, 2021 at 6:04 PM Julio Cojom wrote: > Django framework uses urls to math the html files. This work with the same > syntax of static files, you would use {% url 'app:viewname' %} to render > any page with Django. > > You should check th

Re: Hi django

2021-06-24 Thread Julio Cojom
Django framework uses urls to math the html files. This work with the same syntax of static files, you would use {% url 'app:viewname' %} to render any page with Django. You should check the docs of urls to understand how it works and get this done. Regards El jue., 24 de junio de 2021 9:00 a. m

Re: Hi all, i'm using 2 modelforms in one view function one as foreign key but when i submit babyform2 not storing in database. anyone please fix this

2021-06-01 Thread Lalit Suthar
because you're passing commit=False with form2 On Tue, 1 Jun 2021 at 14:10, Hugh Frost wrote: > def detail(request): > if request.method == 'POST': > baby_form1 = BabyForm1(data=request.POST) > baby_form2 = BabyForm2(data=request.POST) > > if baby_form1.is_valid() and

Re: Hi group am new here

2021-04-04 Thread Kasper Laudrup
On 05/04/2021 01.45, believeme mum007 wrote: > i keep seeing this and hear about it but not much, please will be happy > if i could be well training about it > You keep seeing and hearing what and what will you be well training about? Sorry, but you're not making any sense. Feel free to ask a qu

Re: Hi group am new here

2021-04-04 Thread believeme mum007
i keep seeing this and hear about it but not much, please will be happy if i could be well training about it On Sun, Apr 4, 2021 at 10:31 PM Kasper Laudrup wrote: > On 04/04/2021 23.09, frank galan wrote: > > It is not a translation from spanish at all, may be should came from > > another langu

Re: Hi group am new here

2021-04-04 Thread Kasper Laudrup
On 04/04/2021 23.09, frank galan wrote: > It is not a translation from spanish at all, may be  should came from > another language, or it is an incomplete question and he was mean > machine learning, could be? > I hadn't thought about it might be machine learning and the mail was just sent before

Re: Hi group am new here

2021-04-04 Thread frank galan
It is not a translation from spanish at all, may be should came from another language, or it is an incomplete question and he was mean machine learning, could be? El dom, 4 abr 2021 a las 21:24, Kasper Laudrup () escribió: > On 04/04/2021 12.08, believeme mum007 wrote: > > > > Please i will be h

Re: Hi group am new here

2021-04-04 Thread Kasper Laudrup
On 04/04/2021 12.08, believeme mum007 wrote: > > Please i will be happy to see who will explain well for me concerning > the machine > This has to be one of the funniest things I've read here so far. Would anyone happen to know if this is a case of bad machine translation and if so from which la

Re: hi mates trouble with ajax 500 error server

2021-03-28 Thread frank galan
Thanks a lot, you're right. I solved it. Thanks El dom, 28 mar 2021 a las 0:57, Kasper Laudrup () escribió: > On 27/03/2021 21.41, frank galan wrote: > > thanks, here is the server error response > > > > NameError: name 'JsonResponse' is not defined > > > > That error message should be fairly ob

Re: hi mates trouble with ajax 500 error server

2021-03-27 Thread Kasper Laudrup
On 27/03/2021 21.41, frank galan wrote: > thanks, here is the server error response > > NameError: name 'JsonResponse' is not defined > That error message should be fairly obvious. You haven't defined anything called JsonResponse. You most likely just need to import the correct module. I don't

Re: hi mates trouble with ajax 500 error server

2021-03-27 Thread frank galan
thanks, here is the server error response Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner response = get_response(request) File "/Library/Frameworks/Python.framew

Re: hi mates trouble with ajax 500 error server

2021-03-27 Thread Kasper Laudrup
On 27/03/2021 15.13, frank galan wrote: > Im receiving a 500 server error,  when I trying  to obtain data wiith > ajax from my model.  You should look at the server logs or the output from the console. That should hopefully provide some details on the reason behind the "Internal Server Error". Ki

Re: Hi how to another app URL config to main project URLs

2021-03-20 Thread Omkar Parab
path('' ", include('name_of_your_app.urls')). Tip - You should learn more about, how to send an email. On Sat, Mar 20, 2021, 10:41 PM Mahendra wrote: > > > Mahendra Yadav > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe

Re: Hi

2021-02-03 Thread Kelechi Divine
The same problem that I am passing through! But in case you've seen any help somewhere then i'd appreciate if you'd share. On Thu, 28 Jan 2021 at 17:45, Sunday Iyanu Ajayi wrote: > Hi Florin, > > What support do you need? You can reach out via my email. > *AJAYI Sunday * > (+234) 806 771 5394 >

Re: Hi any body help i want code video belonging views,likes and dislikes

2021-02-01 Thread Mahendra
Like youtube videos belonging to views,likes and Dislikes Mahendra Yadav On Mon, 1 Feb 2021, 20:23 Kasper Laudrup, wrote: > If you want someone to help you with anything, at least take the minimal > effort of asking for it in a proper way. > > I have no idea which kind of response you expect to

Re: Hi any body help i want code video belonging views,likes and dislikes

2021-02-01 Thread sakshi jain
Hi - Plz help me On Mon, Feb 1, 2021, 20:23 Kasper Laudrup wrote: > If you want someone to help you with anything, at least take the minimal > effort of asking for it in a proper way. > > I have no idea which kind of response you expect to get from posting > something like this. > > Kind regards

Re: Hi any body help i want code video belonging views,likes and dislikes

2021-02-01 Thread Kasper Laudrup
If you want someone to help you with anything, at least take the minimal effort of asking for it in a proper way. I have no idea which kind of response you expect to get from posting something like this. Kind regards, Kasper Laudrup -- You received this message because you are subscribed to

Re: Hi

2021-01-31 Thread Ogunlade Stephen Olayide
What's the project all about? On Thu, Jan 28, 2021, 5:46 PM Sunday Iyanu Ajayi wrote: > Hi Florin, > > What support do you need? You can reach out via my email. > *AJAYI Sunday * > (+234) 806 771 5394 > *sunnexaj...@gmail.com * > > > > On Tue, Jan 26, 2021 at 3:10 PM Florin Ngabire > wrote: >

Re: Hi

2021-01-28 Thread Sunday Iyanu Ajayi
Hi Florin, What support do you need? You can reach out via my email. *AJAYI Sunday * (+234) 806 771 5394 *sunnexaj...@gmail.com * On Tue, Jan 26, 2021 at 3:10 PM Florin Ngabire wrote: > My name is florin.i need a support. A small Python project in django > framework > > -- > You received thi

Re: hi

2020-11-01 Thread Frank Cipolone
Hey my dude On Sun, Nov 1, 2020 at 3:10 PM Chris Franklin wrote: > Hii > > On Nov 1, 2020 21:26, "shahed info" wrote: > >> Hi brother >> >> On Mon, Nov 2, 2020, 1:14 AM tyshan...@gmail.com >> wrote: >> >>> >>> hi >>> >>> -- >>> You received this message because you are subscribed to the Google

Re: hi

2020-11-01 Thread Chris Franklin
Hyy bro On Nov 1, 2020 21:39, "Walter Randazzo" wrote: > HI there! > > > El dom., 1 nov. 2020 a las 16:13, tyshan...@gmail.com (< > tyshanchn...@gmail.com>) escribió: > >> >> hi >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Django users" group. >> To u

Re: hi

2020-11-01 Thread Chris Franklin
Hii On Nov 1, 2020 21:26, "shahed info" wrote: > Hi brother > > On Mon, Nov 2, 2020, 1:14 AM tyshan...@gmail.com > wrote: > >> >> hi >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Django users" group. >> To unsubscribe from this group and stop receivin

Re: hi

2020-11-01 Thread Walter Randazzo
HI there! El dom., 1 nov. 2020 a las 16:13, tyshan...@gmail.com (< tyshanchn...@gmail.com>) escribió: > > hi > > -- > 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 > em

Re: hi

2020-11-01 Thread shahed info
Hi brother On Mon, Nov 2, 2020, 1:14 AM tyshan...@gmail.com wrote: > > hi > > -- > 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...@goo

Re: hi

2020-11-01 Thread Diksha Vazirani
Hii On Mon, Nov 2, 2020, 12:44 AM tyshan...@gmail.com wrote: > > hi > > -- > 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...@googlegro

Re: Hi

2020-06-05 Thread S K
It is not that important. If you have any specific settings in your earlier pycharm projects click on first one. Or if you have settings in separate config file locate that finally you can choose not to import anything. On Fri, 5 Jun, 2020, 11:52 am Pawan Goswami, wrote: > Please kindly help me

Re: hi eveyone

2020-05-13 Thread Joshua Kayode
Hello On Tue, May 12, 2020, 3:06 PM Ravindra Patil wrote: > hi eveyone > > -- > 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...@google

Re: Hi everyone I am new in django and postgresql. Actually I am getting following error when i run the project, Although I am putting right password and username. Please Help me....

2020-01-03 Thread Muhammed Rafi A
password is not correct, check them or reset the password ones more On Fri, Jan 3, 2020 at 2:58 PM shailendra singh wrote: > The above exception was the direct cause of the following exception: > > Traceback (most recent call last): > File > "/Library/Frameworks/Python.framework/Versions/3.8/l

Re: Hi everyone I am new in django and postgresql. Actually I am getting following error when i run the project, Although I am putting right password and username. Please Help me....

2020-01-03 Thread Rajesh Maruti
The authentication error for the database username with password Please check the DB username and password On Fri, 3 Jan 2020 at 14:57, shailendra singh wrote: > The above exception was the direct cause of the following exception: > > Traceback (most recent call last): > File > "/Library/Fra

Re: Hi everyone I am new in django and postgresql. Actually I am getting following error when i run the project, Although I am putting right password and username. Please Help me....

2020-01-03 Thread sagar ninave
Hello ShailendraI have tried to attached postgresql to django but it could not happened please can you tell me what is procedure to do that -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails

Re: Hi everyone I am new in django and postgresql. Actually I am getting following error when i run the project, Although I am putting right password and username. Please Help me....

2020-01-03 Thread shailendra singh
Thanks Everyone . Now its done. On Friday, January 3, 2020 at 2:57:27 PM UTC+5:30, shailendra singh wrote: > > The above exception was the direct cause of the following exception: > > Traceback (most recent call last): > File > "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/th

Re: Hi everyone I am new in django and postgresql. Actually I am getting following error when i run the project, Although I am putting right password and username. Please Help me....

2020-01-03 Thread Motaz Hejaze
To test just create another user and database and grant all privileges for the new user to the new database and finally add those new credentials to django settings.py On Fri, 3 Jan 2020, 12:46 pm ramadhan ngallen, wrote: > Hello > The reason was due to wrong password for the postgre. Kindly tes

Re: Hi everyone I am new in django and postgresql. Actually I am getting following error when i run the project, Although I am putting right password and username. Please Help me....

2020-01-03 Thread ramadhan ngallen
Hello The reason was due to wrong password for the postgre. Kindly test the password via Pgadmin. Best Regards Ramadhan Ngallen Software Consultant Phone: +255 715 200 997 | ngall...@gmail.com On 3 Jan 2020, 12:27 +0300, shailendra singh , wrote: > The above exception was the direct cause of th

Re: Hi, I'm new django. I want to learn Django. What's the first step.

2019-09-01 Thread Ryan Gedwill
My favorite is django-book. I used it as a reference for 2 years after I first started using Django. Ryan Gedwill > On Sep 1, 2019, at 7:09 AM, WebTrainingRoom Online > wrote: > > Hi! > you may find this useful > https://www.webtrainingroom.com/python/django-project > > Thanks > > >>

Re: Hi, I'm new django. I want to learn Django. What's the first step.

2019-09-01 Thread WebTrainingRoom Online
Hi! you may find this useful https://www.webtrainingroom.com/python/django-project Thanks On Sun, Sep 1, 2019 at 7:07 PM Jorge Luis Callalle Torres < jlcalla...@gmail.com> wrote: > Hi, I'm new django. I want to learn Django. What's the first step > What advice you could give me. > Any course,

Re: Hi, I'm new django. I want to learn Django. What's the first step.

2019-09-01 Thread Guz Man
> > Hi Jorge, > I recommend you some sources (I assume that you already know Python): 1. Corey Schafer's YouTube tutorial: https://www.youtube.com/watch?v=UmljXZIypDc&list=PL-osiE80TeTtoQCKZ03TU5fNfx2UY6U4p 2. William Vincent's introductory book: https://djangoforbeginners.com/ With these two

Re: Hi, I'm new django. I want to learn Django. What's the first step.

2019-09-01 Thread Tosin Ayoola
Read 2 scoop of django, alongside django two with example, have your django documentation handy u will need it & I also have django tutorial series, I'm started yesterday, with all that u will b good to go On Sep 1, 2019 14:37, "Jorge Luis Callalle Torres" wrote: > Hi, I'm new django. I want

Re: Hi, I'm new django. I want to learn Django. What's the first step.

2019-09-01 Thread Gabriel Araya Garcia
Jorge Luis: La clave para comenzar, es meterte en los tutoriales, Por ejemplo y si te encuentras que las rutas se construyen con PATH, entonces es un tutorial moderno. En caso contrario, te van a sugerir comandos e instrucciones que están obsoletas y vas a intentar llevarlas a cabo y no te funciona

Re: Hi, I'm new django. I want to learn Django. What's the first step.

2019-09-01 Thread Gabriel Araya Garcia
Work with the last version of python and django. Take care about the old sintaxis. The new sintaxis is more easy. have a good day gabrielaraya2...@gmail.com El dom., 1 sept. 2019 a las 9:37, Jorge Luis Callalle Torres (< jlcalla...@gmail.com>) escribió: > Hi, I'm new django. I want to learn Dja

Re: Hi, I'm new django. I want to learn Django. What's the first step.

2019-09-01 Thread Gil Obradors
I started with django official tutorial : https://docs.djangoproject.com/en/2.2/intro/tutorial01/ Nice to start APPs, and continue with admin customizations. Welcome and good luck! Missatge de Jorge Luis Callalle Torres del dia dg., 1 de set. 2019 a les 15:37: > Hi, I'm new django. I want to

Re: Hi, can any one help me please.

2019-08-12 Thread Sundararajan Seshadri
It means that there is no line in urls.py of the main application with the name as 'display_laptop'. Probably you are confused with the action and name. Action should be a callable and should be imported in urls.py file. Name is the name of the route and it appears within quote (normally). Typi

Re: Hi, can any one help me please.

2019-08-12 Thread DPM
Can u plz show the code where this error coming... On Mon, 12 Aug, 2019, 5:00 PM goitom negash, wrote: > the following error is displayed when i try to write a function named as > display_laptop to display the available laptops in the backend. > NoReverseMatch at / > > Reverse for 'display_lapto

Re: Hi

2019-07-09 Thread Nelson Varela
Yes -- 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 post to this group, send email to django-users@googlegroups.com

Re: hi guys i have been having trouble setting up a login and registration page, can anyone please help me

2019-03-13 Thread gauravsrivastava2k17
Please post traceback so that I can know what type of error you are getting On Tuesday, March 12, 2019 at 8:26:04 PM UTC+5:30, abhishek jayalal wrote: > > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and sto

Re: hi guys i have been having trouble setting up a login and registration page, can anyone please help me

2019-03-12 Thread Siddharth Tamang
Can you be specific what errors you are getting? On Tue, Mar 12, 2019 at 8:25 PM abhishek jayalal < abhishekjayalal...@gmail.com> wrote: > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving e

Re: Hi all

2019-03-05 Thread Lakshmi Reddy
thanq On Wed, 6 Mar 2019 at 07:37, Sai Vinay Nelluri wrote: > Did you assigned an url for that view? > Try doing so and run server and go to the assigned url. > > On Wed, 6 Mar 2019, 00:02 , wrote: > >> how can i redirect to Login.html page >> >> -- >> You received this message because you are

Re: Hi all

2019-03-05 Thread Sai Vinay Nelluri
Did you assigned an url for that view? Try doing so and run server and go to the assigned url. On Wed, 6 Mar 2019, 00:02 , wrote: > how can i redirect to Login.html page > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe fr

Re: Hi all

2019-03-05 Thread Gil Obradors
With httpresoponseredirect! https://docs.djangoproject.com/en/2.1/ref/request-response/#httpresponse-subclasses Missatge de l'adreça del dia dt., 5 de març 2019 a les 19:31: > how can i redirect to Login.html page > > -- > You received this message because you are subscribed to the Google Group

Re: hi, How can I deploy my first Django website ?

2019-01-15 Thread Siddharth Tamang
I hosted my django website in apache with ssl hosted in Ubuntu 18.04 with Postgre sql db. Learning curve is there but you will be satisfied with final output. Digital ocean has good notes on it. You can refer to it. By the way what OS are you preferring? > On 15-Jan-2019, at 8:51 PM, Thiago B

Re: hi, How can I deploy my first Django website ?

2019-01-15 Thread Thiago Brito
https://www.digitalocean.com/community/tutorials/how-to-serve-django-applications-with-uwsgi-and-nginx-on-ubuntu-16-04 Em ter, 15 de jan de 2019 às 13:00, escreveu: > what is the best web hosting provider for Django websites? > > What should I learn to deploy my first Django website? > > what is

Re: hi, How can I deploy my first Django website ?

2019-01-15 Thread Nitin Kumar
Here is a tutorial : https://uwsgi-docs.readthedocs.io/en/latest/tutorials/Django_and_nginx.html On Tue, Jan 15, 2019 at 8:37 PM wrote: > i can not understand > > > On Tuesday, January 15, 2019 at 5:03:58 PM UTC+2, Nitin Kumar wrote: >> >> uwsgi/gunicorn >> Nginx >> >> >> On Tue 15 Jan, 2019, 8:

Re: hi, How can I deploy my first Django website ?

2019-01-15 Thread mw5301758
i can not understand On Tuesday, January 15, 2019 at 5:03:58 PM UTC+2, Nitin Kumar wrote: > > uwsgi/gunicorn > Nginx > > > On Tue 15 Jan, 2019, 8:30 PM wrote: > >> what is the best web hosting provider for Django websites? >> >> What should I learn to deploy my first Django website? >> >> what i

Re: hi, How can I deploy my first Django website ?

2019-01-15 Thread Nitin Kumar
uwsgi/gunicorn Nginx On Tue 15 Jan, 2019, 8:30 PM what is the best web hosting provider for Django websites? > > What should I learn to deploy my first Django website? > > what is the process? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" gro

Re: hi everyone

2018-11-12 Thread Balaji Sijapati
Hi Ramakurthy, you can get a sample django-Rest webservice project from internet and customize it little bit [U can include same requirement you might have done in Java or any other previous project] and put it in your Resume. I hope this helps. Thanks & Regards Balaji On Sun, Nov 11, 2018 at 7

Re: hi everyone

2018-11-12 Thread PASCUAL Eric
rs@googlegroups.com on behalf of akash kandpal <9654263057akashkand...@gmail.com> Sent: Monday, November 12, 2018 7:56:16 AM To: django-users@googlegroups.com Subject: Re: hi everyone I mean we can see some working projects and learn from it by implementing them ourselves and thus it will be mo

Re: hi everyone

2018-11-11 Thread akash kandpal
I mean we can see some working projects and learn from it by implementing them ourselves and thus it will be more of a learning opportunity for us. Regards, Akash Kandpal. On Mon, Nov 12, 2018, 12:22 PM Joel I don't really understand what you mean. How can you put something on your > resume whe

Re: hi everyone

2018-11-11 Thread Joel
I don't really understand what you mean. How can you put something on your resume when you haven't contributed to it? On Mon, 12 Nov, 2018, 12:06 PM ramakurthy swamy hi sir thank u for giving reply and the real time means what the present > projects are going on company based on python and django

Re: hi everyone

2018-11-11 Thread akash kandpal
I am also looking for some example with code on such projects.Specially, I am looking for some complete websites or working projects on django to learn it's backend part and connectivity with database. If any such project is found, please infrom me too. @ramakurthy Here is my whatsaap no 96542630

Re: hi everyone

2018-11-11 Thread ramakurthy swamy
hi sir thank u for giving reply and the real time means what the present projects are going on company based on python and django,,, And i have a two years gap in my academic period based on that project i want to fill-up that gap so plz kindly help On Sun, Nov 11, 2018 at 7:45 PM PASCUAL Eric wr

Re: hi everyone

2018-11-11 Thread PASCUAL Eric
Hi, What do you mean exactly by "real time" ? Can you describe the project you are thinking about ? "Real time" relates to a very specific class of software, which one of the characteristics is to react to external events in a (most often) short and, deterministic time. For sure, neither Pyt

Re: hi friends i want admin page like this. it is a application form in university

2018-09-29 Thread Vishvajit Pathak
Sudha, You may want to have a look at https://docs.djangoproject.com/en/2.1/ref/contrib/admin/ On Thursday, 27 September 2018 16:42:33 UTC+5:30, Sudha Mohan wrote: > > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this

Re: hi friends i want admin page like this. it is a application form in university

2018-09-27 Thread Joel Mathew
This is a standard django admin page. You can just enable admin and add the relevant models. I suggest you follow the django standard tutorials. On Thu, 27 Sep 2018 at 16:42, Sudha Mohan wrote: > > -- > You received this message because you are subscribed to the Google Groups > "Django users"

Re: hi friends am sending how to create a project in django with step by step. if you are satisfied please send me comments

2018-09-26 Thread Vineet Kothari
Yes need to how to connect with git. On Wed 26 Sep, 2018, 4:45 PM Pardhu Saradhi, wrote: > hi you need to add some more content to this > > On Wed, Sep 26, 2018 at 10:20 AM Dheeraj Kumar wrote: > >> Sudha, >> Its very helpful for us. Thanks so much. >> >> Grace, >> >> I didn't get what u add in

Re: hi friends am sending how to create a project in django with step by step. if you are satisfied please send me comments

2018-09-26 Thread Pardhu Saradhi
hi you need to add some more content to this On Wed, Sep 26, 2018 at 10:20 AM Dheeraj Kumar wrote: > Sudha, > Its very helpful for us. Thanks so much. > > Grace, > > I didn't get what u add in this. > > > On Tue 25 Sep, 2018, 11:40 PM Gear Crew, > wrote: > >> nice man the awesome pdf but I want

Re: hi friends am sending how to create a project in django with step by step. if you are satisfied please send me comments

2018-09-25 Thread Vineet Kothari
Thanks it is quite useful for coming out of drak sublime On Tue 25 Sep, 2018, 11:16 PM Sudha Mohan, wrote: > > -- > 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 > emai

Re: hi friends am sending how to create a project in django with step by step. if you are satisfied please send me comments

2018-09-25 Thread Dheeraj Kumar
Sudha, Its very helpful for us. Thanks so much. Grace, I didn't get what u add in this. On Tue 25 Sep, 2018, 11:40 PM Gear Crew, wrote: > nice man the awesome pdf but I want to add more about urls , views, and > link with model > > On Tuesday, 25 September 2018 19:48:12 UTC+2, Sudha Mohan wro

Re: hi friends am sending how to create a project in django with step by step. if you are satisfied please send me comments

2018-09-25 Thread suneel singh
Wow , it is very helpful On Tue, 25 Sep 2018, 11:40 p.m. Gear Crew, wrote: > nice man the awesome pdf but I want to add more about urls , views, and > link with model > > On Tuesday, 25 September 2018 19:48:12 UTC+2, Sudha Mohan wrote: >> >> >> -- > You received this message because you are subs

Re: hi friends am sending how to create a project in django with step by step. if you are satisfied please send me comments

2018-09-25 Thread Gear Crew
nice man the awesome pdf but I want to add more about urls , views, and link with model On Tuesday, 25 September 2018 19:48:12 UTC+2, Sudha Mohan wrote: > > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and

  1   2   >