RE: QueryDict and its .dict() method - why does it do that?

2015-03-28 Thread bab mis
Sent from my Windows Phone From: Simon Charette Sent: ‎3/‎28/‎2015 2:01 To: django-users@googlegroups.com Subject: Re: QueryDict and its .dict() method - why does it do that? Hi Gabriel, One

Any API for dojo/jquery in django template language ?? For dojo i need urgently , thanks

2013-09-17 Thread bab mis
-- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com.

pattern matching wrong app ???

2013-09-03 Thread bab mis
I have 2 app inside my django project: url(r'^demoproj/$', include('demoproj.urls')), url(r'^sample/$', include('sample.urls')), XX84/sample always redirects to demoproj. Any idea why??? -- You received this message because you are subscribed to the Google Groups "Django

django ListView improper output !!! urgent

2013-08-28 Thread bab mis
Hi , trying to display the member's list present in DB, the code works fine with sample scripts where as with django view-model-template output doesn't come properly. urls.py === url(r'^list',ListContactView.as_view(),name='member-list'), models.py === class member(models.Model):

need a help in ListView 1) how to debug the rendered request and response

2013-08-28 Thread bab mis
Here is my code models.py === class member(models.Model): first_name = models.CharField(max_length=30) last_name = models.CharField(max_length=30) dob = models.DateField() def get_fields(self): return(self.__dict__.keys()[0:len(self.__dict__.keys())-2])