Re: How create a simple "brochure" website in django?

2010-11-04 Thread meitham
> existing CMS like django-cms or LFC Has anyone tried LFC? it seems like its a djangoy version of plone. I am interested to hear any reviews about it. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-u

Re: Django + Postgres

2010-09-01 Thread meitham
> So I have installed postgres, pyscopg2. > > su postgres > created a database > updated my settings.py: > DATABASES = { >     'default': { >         'ENGINE': 'django.db.backends.postgresql_psycopg2', >         'NAME': 'template1', >         'USER': 'postgres', >         'PASSWORD': 'postgres', >

Re: Jaspersoft or Pentaho with Django?

2010-06-28 Thread meitham
ngo is a web framework while both these solutions you mentioned are ETL tools. what is the link? May be I could help more if you could explain. Meitham -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email

Re: foreign key to an abstract model

2009-12-03 Thread meitham
> Here's how to do a generic foreign key: Thanks, I was not aware django support a generic foreign key. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this

foreign key to an abstract model

2009-12-03 Thread meitham
This question might sound a bit dumb but suppose I have an abstract model `vehicle` with two models branching out of it say `car` and `train`, and lets say we have a `driver` model where the driver have a field `can_drive` that is a foreign key to a `vehicle`. The way I used to do it in an old fash