Re: [BangPypers] django signals

2011-11-15 Thread Kenneth Gonsalves
On Tue, 2011-11-15 at 14:19 +0530, Roshan Mathews wrote: > Found via this wonderful site - > https://www.google.com/search?q=django+signals+example which gave much > better results than http://duckduckgo.com/?q=django+signals+example I resent that ;-). How about this: http://duckduckgo.com/?q=sit

Re: [BangPypers] django signals

2011-11-15 Thread Roshan Mathews
On Tue, Nov 15, 2011 at 14:12, Asif Jamadar wrote: > Can anybody explain me how these django signals works with example? Yes, Alon Swartz can, over here - http://www.turnkeylinux.org/blog/django-signals Found via this wonderful site - https://www.google.com/search?q=django+signals+example which g

Re: [BangPypers] django signals

2011-11-15 Thread Asif Jamadar
Can anybody explain me how these django signals works with example? ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] django signals

2011-11-15 Thread Gora Mohanty
On Tue, Nov 15, 2011 at 1:39 PM, Asif Jamadar wrote: > > Is there any way to implement timer using django for each page? Timers are best done with Javascript at the front-end, backed by verification in the back-end. Normally, the back-end can only be informed of changes on a page reload, or via a

Re: [BangPypers] django signals

2011-11-15 Thread Roshan Mathews
JavaScript timer in the browser. Your view will verify the start and end time on the backend. On Tue, Nov 15, 2011 at 13:39, Asif Jamadar wrote: > > Is there any way to implement timer using django for each page? > ___ > BangPypers mailing list > BangP

Re: [BangPypers] django signals

2011-11-15 Thread Asif Jamadar
Is there any way to implement timer using django for each page? ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] django signals

2011-11-15 Thread Venkatraman S
On Tue, Nov 15, 2011 at 12:54 PM, Asif Jamadar wrote: > I'm going to implement questionnaire application using django. Each page > consist of 4 questions. Now how can i implement time for each page. Suppose > each page has 30 min how can i implement this for my questionnaire > application. > > Is

[BangPypers] django signals

2011-11-14 Thread Asif Jamadar
I'm going to implement questionnaire application using django. Each page consist of 4 questions. Now how can i implement time for each page. Suppose each page has 30 min how can i implement this for my questionnaire application. Is this can be achived by django signal? _