Re: Django begginer

2019-11-27 Thread Daniel Almeida
Thank you guys I set as charfield and will be ok for now. So maybe u can help me further, this is a timesheet app and I have all set in django admin. I can add and delete data from my table in the administration mode. Now my question is how can I import this to a html template to be able to add

Re: Django begginer

2019-11-26 Thread JVALREY JVALREY
Hola Daniel, Creo que al no declarar el campo "project" como un atributo (CharField, etc) que pueda interpretar el ORM de Django, no lo detecta al momento de declararlo en el admin.register. Tal vez te pueda funcionar declarar ese campo "project" de la clase Task, que apunte a la clase Project,

Django begginer

2019-11-26 Thread Elijah O. Raji
What exactly do you want the variable 'project' to do because you did not Include any field with it. -- 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

Django begginer

2019-11-26 Thread Daniel Almeida
HI guys I´m trying to make a simple timesheet app, first time I´m programming. So I have this code where I set in models.py the Client and then I want to have the Project class sync with the Client class. So for each Client I have a different set of Projects. Now my problem is in Task class I se

Re: Django: Begginer Problems

2016-05-31 Thread Akhil Lawrence
As Ryan mentioned. Go through the forms tutorial. Formsets may also help. Have a look. https://docs.djangoproject.com/en/1.9/topics/forms/formsets/ On Monday, 30 May 2016 04:54:16 UTC+5:30, David Zárate wrote: > > Hi! I'm making a financial analysis app in Django and to have some data to >

Re: Django: Begginer Problems

2016-05-31 Thread 'Ryan Nowakowski' via Django users
On Sun, May 29, 2016 at 02:22:48PM -0700, David Zárate wrote: > Hi! I'm making a financial analysis app in Django and to have some data to > play with i have to store historical data of balance sheets and profit/loss > statements. I need some suggestions on how i can accomplish that. > > Th

Django: Begginer Problems

2016-05-29 Thread David Zárate
Hi! I'm making a financial analysis app in Django and to have some data to play with i have to store historical data of balance sheets and profit/loss statements. I need some suggestions on how i can accomplish that. These are my models so far: class Entity(models.Model): """ Holds information