Re: Please help with django tutorial #2

2006-02-18 Thread ak
Sure that's what I used to solve the problem :) --~--~-~--~~~---~--~~ 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.com To unsubscribe from this

Re: Please help with django tutorial #2

2006-02-17 Thread Luke Skibinski Holt
A shortcut to the 'print sql, copy sql, paste sql into db' route is (for postgresql users anyway) piping it directly in: python manage.py sqlall | psql dbname means you won't miss data :) Luke Skibinski Holt --~--~-~--~~~---~--~~ You received this message

Re: Please help with django tutorial #2

2006-02-17 Thread ak
Ohh thanks guys, my fault ! I've ran python manage.py sqlall polls and it has shown me that I missed some sql stuff that inserts records into django admin tables Thanks a lot! p.s. really django rocks. I used to use my own python library to develop sites that includes MVC stuff and OR-mapping

Re: Please help with django tutorial #2

2006-02-17 Thread Max Battcher
ak wrote: > Thans for your answer Jason but I think you are wrong. As far as I know > "python manage.py install polls" should create all tables in my DB. It > was done and I can sucessfully load entities from database, modify them > and save them back and I see all these tables and records in

Re: Please help with django tutorial #2

2006-02-17 Thread ak
Thans for your answer Jason but I think you are wrong. As far as I know "python manage.py install polls" should create all tables in my DB. It was done and I can sucessfully load entities from database, modify them and save them back and I see all these tables and records in mysql. Even things

Re: Please help with django tutorial #2

2006-02-16 Thread Jason Davies
Sounds like you haven't done `python manage.py install polls` Regards, Jason --~--~-~--~~~---~--~~ 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.com

Please help with django tutorial #2

2006-02-16 Thread ak
Hello guys I have a problem with walking through the second official django tutorial (http://www.djangoproject.com/documentation/tutorial2/). The problem is as follows. I have sucessfully logged in to the admin area, then clicked to the Polls and see my polls list. But if I click to edit a poll