Re: How can i use Knockout Java Script with my Django Project?

2013-02-02 Thread Karen Tracey
Please ask questions about using Django on django-users. The topic of this list is the development of Django itself. Thanks, Karen -- You received this message because you are subscribed to the Google Groups "Django developers" group. To unsubscribe from this group and stop receiving emails fro

How can i use Knockout Java Script with my Django Project?

2013-02-02 Thread abdul
Hello Everyone, I am beginner to Django and currently i developing a project using django and for client side i would like to use knockout JS, So would you please help to achieve this. Thanks a lot, Regards, abdul -- You received this message because you are subscribed to the Google Groups

Re: cycle in nested loops

2013-02-02 Thread Shai Berger
Hi, On Friday 01 February 2013, Aymeric Augustin wrote: > Hi Wim, > > Le 21 janv. 2013 à 18:01, Wim Feijen a écrit : > > Actually, the current behaviour is not to reset between loops. Is that > > intentional? > > Yes, this behavior is intentional. See Malcolm's comment (#4) on the > ticket. >

Re: search across models

2013-02-02 Thread Karen Tracey
You also posted this to django-users, which is where it belongs. Please do not crosspost usage questions to django-developers; the topic of this list is the development of Django itself. Thanks, Karen -- You received this message because you are subscribed to the Google Groups "Django developer

search across models

2013-02-02 Thread Aswani Kumar
hi all, i have a big question. how can i perform search queries like on following models RESTAURANT_TYPES = ( ('C', 'Chinese'), ('A', 'American'), ('J', 'Japanese'), ) class city (models.Model): name = models.CharField(max_length=200) class restaurants(models.Model): nam