Re: My first project

2024-01-06 Thread Daniel Martinez
> >> I'm Daniel, a recent college graduate as of July 2023. Since then, I've >> been actively seeking job opportunities as a Django developer. During my >> job search, I took the initiative to start my first project in Django. I'm >> excited to share with y

Re: My first project

2024-01-05 Thread kpogomou Raphael
ob opportunities as a Django developer. During my >> job search, I took the initiative to start my first project in Django. I'm >> excited to share with you my debut as a full-stack developer: a telehealth >> app that leverages AI to predict diseases. >> >>

My first project

2023-12-15 Thread Daniel Martinez
Hello everyone, I'm Daniel, a recent college graduate as of July 2023. Since then, I've been actively seeking job opportunities as a Django developer. During my job search, I took the initiative to start my first project in Django. I'm excited to share with you my debut as a full-

Re: My first project - URL issue?

2017-11-02 Thread Tony King
> > Ok, well I've solved my immediate problem but clearly need to learn more > about JavaScript, jQuery and CSRF tokens. > But for anyone with a similar URL issue, I did the following; Added an appname setting to my urls.py appname = 'shopfront' urlpatterns = [ url(r'^$', views.index, name='ind

My first project - URL issue?

2017-11-02 Thread Tony King
Hi, I've started my first real project (django v1.11.4 and Python 3.6.2) and I'm probably trying to run before I'm ready, but anyway I'm here. I'm essentially trying to create a front-end menu, that will eventually launch and log-on to either a local application or another web-site. This lat

Re: i dont know from where to start my first project on django

2017-05-11 Thread vitalysweb
yess, thank u for the tip ;) Le mercredi 10 mai 2017 00:39:03 UTC+2, Lachlan Musicman a écrit : > > A further tip. Your models might be (doesn't have to be): > > - Drivers > - Cars > - reservations (a Many to Many relationship with extra fields > https://docs.djangoproject.com/en/1.11/topics/

Re: i dont know from where to start my first project on django

2017-05-11 Thread vitalysweb
Thank you very much, I'll start with 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 from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send

Re: i dont know from where to start my first project on django

2017-05-09 Thread Lachlan Musicman
A further tip. Your models might be (doesn't have to be): - Drivers - Cars - reservations (a Many to Many relationship with extra fields https://docs.djangoproject.com/en/1.11/topics/db/models/#extra-fields-on-many-to-many-relationships ) cheers L. -- "Mission Statement: To provide hope a

Re: i dont know from where to start my first project on django

2017-05-09 Thread Mark Phillips
Start with the model layer. Use the admin interface to add some dummy data and think about how you want the front facing pages/forms to look and operate. Repeat as needed. Mark On Tue, May 9, 2017 at 9:03 AM, wrote: > Hi everyone, > My project consists of a web site which allows to manage the r

i dont know from where to start my first project on django

2017-05-09 Thread vitalysweb
Hi everyone, My project consists of a web site which allows to manage the reservations of vehicles by customers. These customers are required to work with these vehicles as drivers 35 hours a week *front office* __During registration on the site the user will have to load documents (pdf, jpeg e

Advise for my first project Django

2016-12-23 Thread imed chaabouni
Hello, I am a Tunisian novice developer, and I am about to make my first project in Django this year after studying Python. First thing comes to mind as a project was making a website music and listening online, so, I'd like to know if it's feasible or not ? and if you can

Re: ¿Como hacer mi primera aplicacion con Django en Ubuntu? ¿How Can I make my first project with Django?

2016-04-03 Thread Vijay Khemlani
Leiste el tutorial? https://docs.djangoproject.com/en/1.9/intro/tutorial01/ On Sat, Apr 2, 2016 at 3:25 AM, Kike Martinez wrote: > Hola quisiera saber como puedo hacer un proyecto con Djando desde cero > gracias > > -- > You received this message because you are subscribed to the Google Groups

¿Como hacer mi primera aplicacion con Django en Ubuntu? ¿How Can I make my first project with Django?

2016-04-02 Thread Kike Martinez
Hola quisiera saber como puedo hacer un proyecto con Djando desde cero gracias -- 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...@googlegr

Re: I've done my first project in django but now I can't start a new one.. ?!

2011-11-03 Thread Andre Terra
You've probably changed your .py file association in Explorer, probably when configuring Notepad++. Try changing them back so that python executes .py files or run > python django-admin.py startproject todo Cheers, AT On Thu, Nov 3, 2011 at 4:58 AM, paz aricha wrote: > I finished the Thin

I've done my first project in django but now I can't start a new one.. ?!

2011-11-03 Thread paz aricha
I finished the ThinkVitamin tutorial on the polls app and now I want to start a new project to work on. So I opened my command line (on windows) and types: "django-admin.py startproject todo" But it didn't work...Instead it just opens the django-admin.py file in notepadd++ and does nothing else. Ha

Re: need some help with my first project

2011-04-11 Thread Luterien
Thanks for the replies! I guess i should start reading the docs on templates now. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to

Re: need some help with my first project

2011-04-11 Thread bruno desthuilliers
On 11 avr, 11:35, Luterien wrote: > Hello. I'm a newbie web developer and i'm trying to learn Django. > > I'm working on a blog project,i've almost completed the index page > which shows 10 latest posts. Now i want to add Categories to the > sidebar,but i dont know how to do that. Do i need to c

Re: need some help with my first project

2011-04-11 Thread Kenneth Gonsalves
On Mon, 2011-04-11 at 02:35 -0700, Luterien wrote: > Hello. I'm a newbie web developer and i'm trying to learn Django. > > I'm working on a blog project,i've almost completed the index page > which shows 10 latest posts. Now i want to add Categories to the > sidebar,but i dont know how to do that.

need some help with my first project

2011-04-11 Thread Luterien
Hello. I'm a newbie web developer and i'm trying to learn Django. I'm working on a blog project,i've almost completed the index page which shows 10 latest posts. Now i want to add Categories to the sidebar,but i dont know how to do that. Do i need to create a get_categories view or use another met