Re: Problem getting django on mac (10.5/Leopard) working

2012-01-08 Thread Martin Chiteri
I think its because the actual folder is named django-trunk but your application's import statement is using django to referrence it. The symbolic link resolved the issue for you. Martin. On 1/9/12, larry.mart...@gmail.com wrote: > On Jan 7, 7:13 pm, "larry.mart...@gmail.com" > wrote: >> On Jan

Re: "python manage.py runserver" creates not tables (tutorial)

2011-11-02 Thread Martin Chiteri
What about if you do a python manage.py sqlall >From the settings file, I do not see any of your apps added in the list of installed apps, like INSTALLED_APPS = ( 'django.contrib.auth', 'mysite.news', ., ) Martin. -- You received this message because you are subscribed to the Google

Re: Pylons vs. Django

2010-09-06 Thread Martin Chiteri
Hi, I understand that you can use whatever templating engine you so wish with django, so if you feel that Mako or Genshi is better for you, you can plug them into django and start using them. It might help to know that Guido Van Rossum actually prefers django templates :) Regards, Martin. -- Yo