Re: Recommendations for a Django development book?

2009-07-22 Thread Marco Buttu
t; (2nd edition): http://www.apress.com/book/view/1430219386 They are complementary. The first is a wonderful book, mainly suited for beginners, and the second is very useful for more advanced readers. -- Marco Buttu | www.pypeople.com --~--~-~--~~~---~--~~ You received t

Re: Django model problem

2009-04-03 Thread Marco Buttu
reignKey(Musician) name = models.CharField(max_length=100) pub_date = models.DateField() -- Marco Buttu --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email t

Re: http links without using URLs.py

2009-01-27 Thread Marco Buttu
iew.py. I have many links like this and would prefer that the links > go directly to the page ignoring the django requests. If you want to bypass the view you can try direct_to_template: http://docs.djangoproject.com/en/dev/ref/generic-views/#django-views-ge

Re: Your IDE of choice

2009-01-08 Thread Marco Buttu
tweaking for Windows. I am using PySmell to autocomplete Django code, but I think omnicomplete is better. Tomorrow I'll try it :-) Thanks -- Marco Buttu --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django

Re: ManyToManyField with extra content and Django admin

2008-10-16 Thread Marco Buttu
ngo-users/browse_thread/thread/141d50f3b91ee877 Regards, -- Marco Buttu --~--~-~--~~~---~--~~ 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.

ManyToMany via intemediary model and admin interface

2008-10-08 Thread Marco Buttu
Hi. I wrote an intemediary model like this one: http://docs.djangoproject.com/en/dev/topics/db/models/#extra-fields-on-many-to-many-relationships ## models.py # from django.db import models class Person(models.Model): name =

Re: Error while importing URLconf '{{ project_name }}.urls'...

2008-05-29 Thread Marco Buttu
: > Error while importing URLconf 'csp.urls': No module named csp.urls Why in the ROOT_URLCONF ``CSP'' is uppercase and in the error message it is lowercase? -- Marco Buttu --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goog

Re: django newbie with an install problem - bad interpreter

2008-05-20 Thread Marco Buttu
I thought my symlink might be bad so I tried executing the command > using the full path to django-admin.py which gave me the same message. You can try without use env: python /usr/local/Django-0.96.2/django/bin/django-admin.py startproject