Re: Learn DJango first, then learn Pinax; or just learn Pinax straight-off?

2011-09-18 Thread 邓超
I suggest learn django first 2011/9/17 Alec Taylor > Good afternoon, > > I plan on using Pinax for a project I'm doing (releasing project under > New BSD or similar). > > My Learning Plan is as follows: > 1. https://docs.djangoproject.com/en/dev//intro/tutorial01/ > https://docs.djangoproject.co

Re: Editing djangoproject Community RSS feed info

2011-09-18 Thread Russell Keith-Magee
On Mon, Sep 19, 2011 at 4:08 AM, Subhranath Chunder wrote: > I just added my tech blog to > the https://www.djangoproject.com/community/ page with feeds > from http://scratch-blog.appspot.com/feed/rss/ > Can someone with admin privileges, please edit and change the title to > 'Subhranath Chunder' 

Editing djangoproject Community RSS feed info

2011-09-18 Thread Subhranath Chunder
I just added my tech blog to the https://www.djangoproject.com/community/ page with feeds from http://scratch-blog.appspot.com/feed/rss/ Can someone with admin privileges, please edit and change the title to 'Subhranath Chunder' from the current 'ScratchBlog - The Scratch Blog'. I had simply put t

Re: access fields value in template

2011-09-18 Thread Mjumbe Poe
Also, model_blocks is available from PyPI: pip install django-model-blocks On Sep 18, 2:33 am, Phang Mulianto wrote: > Thanks for the respons. > > i use the items function using > > {% for key, value in object.items %} >   {{ value }} > {% endfor %} > > the problem now.. the field is not a

Re: access fields value in template

2011-09-18 Thread Mjumbe Poe
If I understand your question correctly, this is like the problem that I was trying to solve with django-model-blocks (https://github.com/ mjumbewu/django-model-blocks/). With model_blocks you'd put something like this in your template: {% load model_blocks %} ... {{ object|as_detail

Full Time Freelance Python/Django Developer required

2011-09-18 Thread Farhan Ahmed
I am looking to hire full time, Work from home, Python/Django developer for a USA based company. Please contact me at farhan_ahme...@hotmail.com for further details. Regards, Farhan -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to t

Re: Admin coding guidelines order?

2011-09-18 Thread Micky Hulse
On Sat, Sep 17, 2011 at 7:14 PM, Micky Hulse wrote: > How's this for organization(?): Bare bones example: Note on comments: Trying to follow similar guidelines for comments as found here: I have always liked

Re: [Sharing] django-custom-auths

2011-09-18 Thread Subhranath Chunder
Added the Google+ authentication app to it. On Wed, Aug 10, 2011 at 2:52 PM, Subhranath Chunder wrote: > I was working on these django applications which simplifies the use of > third-party logins for a django project without breaking any existing code. > > My concerns were: > - No existing code

[Share] Google+ and Django

2011-09-18 Thread Subhranath Chunder
Saw the Google+ API for developers released a couple of days back. I've probably made the first attempt to integrate the Google+ with Django authentication backend, in the form a pluggable Django app. You can find the details in here: http://scratch-blog.appspot.com/blog/2011/09/18/google-api-and-

get latest records for each group

2011-09-18 Thread Олег Корсак
Hi there. I have such SQL to fetch latest records for each group: SELECT tp.id,tp.team_id,tp.player_id FROM ( SELECT tps.team_id,tps.player_id,MAX(tps.dt_from) AS dt_from FROM team_players tps GROUP BY tps.team_id,tps.player_id ) AS tps JOIN team_players tp ON(tp.dt_

Re: access fields value in template

2011-09-18 Thread Phang Mulianto
Thanks for the respons. i use the items function using {% for key, value in object.items %} {{ value }} {% endfor %} the problem now.. the field is not arranged like what i want. let say i want to display name, email, password, join in the table. how to achive this field arrangement in the

Re: Learn DJango first, then learn Pinax; or just learn Pinax straight-off?

2011-09-18 Thread Adnan Sadzak
You have some tutorials on http://showmedo.com/videotutorials/django Also there is Python videos if You starting up. Cheers, Adnan On Sun, Sep 18, 2011 at 7:48 AM, Alec Taylor wrote: > Also, quick tutorial question; are there a good set of video tutorials > (i.e. on YouTube or metacafe) for DJa