Contract python programming job in Sydney

2005-12-11 Thread fishzle
Hi folks, we're looking to hire a contract python programmer (preferably one with experience in django) for a short job - about 8 weeks. Location: Chatswood, Sydney, Australia Type: Contract When: ASAP until about end of feb. Brief description: New tool/database development, multi-tiered client/

Re: To write software application with Django

2005-12-11 Thread Albert Lee
Can you speak python language ? 2005/12/12, Armin <[EMAIL PROTECTED]>: Or I could just teach lee how to spell?-- 欢迎访问我的小站:   http://www.2tuzi.comblog :   http://blog.2tuzi.com

Re: To write software application with Django

2005-12-11 Thread Armin
Or I could just teach lee how to spell?

Re: To write software application with Django

2005-12-11 Thread Albert Lee
Fantast idea ~~ i think you should make a site named: billiondallarsarmin,  and sell the cells ~2005/12/12, Armin <[EMAIL PROTECTED]>: Nothing beats what? Visual Basic? hem No soup for you! NEXTTT... -- 欢迎访问我的小站:   http://www.2tuzi.comblog :   http://blog.2tuzi.com

Re: To write software application with Django

2005-12-11 Thread Armin
Nothing beats what? Visual Basic? hem No soup for you! NEXTTT...

Re: custom add-view for admin

2005-12-11 Thread Afternoon
Steffen, There is a ticket for this issue, #714 - http:// code.djangoproject.com/ticket/714, which I would like to create a fix for. However I've not had much time to do that yet. I'm no expert on the problem other that however. I'd just like Django to support this type of thing out of t

custom add-view for admin

2005-12-11 Thread Steffen Glückselig
I wanted to add the ID of the current user (request.user.id) into an object automatically. So I was looking for a way to change the behavior of the default admin-interface for that object. My solution now is to extend the add-view of that object. I changed the urlpatterns to include (r'^admin/web

Re: admin/change_form broken ?

2005-12-11 Thread olive
Its OK now. Thanks Robert and Kenneth

Re: Easy customizing of admin subsections?

2005-12-11 Thread Robert Wittams
tonemcd wrote: > Whoa, this is very neat... > > I see the /admin/csv_thing/ URL getting dispatched to (presumably) a > method in the target app, - is this correct? > > If so (big drum roll here), does that mean a method in my_app can get > the content of 'result_list' from change_list.html, and

Re: Easy customizing of admin subsections?

2005-12-11 Thread Jaanus
> I see the /admin/csv_thing/ URL getting dispatched to (presumably) a > method in the target app, - is this correct? Yes, I put it in the views of the app. > If so (big drum roll here), does that mean a method in my_app can get > the content of 'result_list' from change_list.html, and work on