Re: Models: Referencing A Model In Another App and Different Project

2012-07-29 Thread JJ Zolper
"As a general remark related to the issues that JJ has described... are there perhaps - or rather, should there be - pointers from the Django site that discuss some good practices to the overall approach of designing and building sites/projects/apps/databases - as opposed to the technical nitty

Re: Models: Referencing A Model In Another App and Different Project

2012-07-29 Thread Derek
As a general remark related to the issues that JJ has described... are there perhaps - or rather, should there be - pointers from the Django site that discuss some good practices to the overall approach of designing and building sites/projects/apps/databases - as opposed to the technical nitty-

Re: Models: Referencing A Model In Another App and Different Project

2012-07-28 Thread JJ Zolper
Okay well atleast im learning from my mistake! The reason I thought multiple projects was needed was because in each settings file I was tied to a database and i felt I need 5 databases. But it seems clear that i dont need that many projects. When you said "you should allocate webserver locatio

Re: Models: Referencing A Model In Another App and Different Project

2012-07-27 Thread Melvyn Sopacua
On 27-7-2012 6:17, JJ Zolper wrote: > You are probably right to be honest. I might be overdoing it with > seperating things apart. I guess sometimes I'm too efficient! > > Here's some more to chew on though: > > I also want to point out the reason why I am trying to bring one model into > anoth

Re: Models: Referencing A Model In Another App and Different Project

2012-07-26 Thread JJ Zolper
two applications into one > project. > > good luck, > > Michael > > > -Original Message- > From: django-users@googlegroups.com on behalf of JJ Zolper > Sent: Thu 7/26/2012 3:12 AM > To: django-users@googlegroups.com > Subject: Models: Referencing A Mode

RE: Models: Referencing A Model In Another App and Different Project

2012-07-26 Thread michael.pimmer.ext
good luck, Michael -Original Message- From: django-users@googlegroups.com on behalf of JJ Zolper Sent: Thu 7/26/2012 3:12 AM To: django-users@googlegroups.com Subject: Models: Referencing A Model In Another App and Different Project Hello fellow Django developers, So here is my model tha

Models: Referencing A Model In Another App and Different Project

2012-07-25 Thread JJ Zolper
Hello fellow Django developers, So here is my model that interfaces with my Artists database: from django.db import models class Artist(models.Model):       name = models.CharField(max_length=30)       genre = models.CharField(max_length=30)        city = models.CharField(max_length=30)