Re: Django comments customization issue

2012-12-26 Thread sri
Hi donarb, Thanks for your reply. It worked after changing the input tags names as you mentioned. And also, thanks for mentioned about BR tags as well. Thanks On Wednesday, 26 December 2012 20:06:15 UTC, donarb wrote: > > On Wednesday, December 26, 2012 11:43:47 AM UTC-8, sri wrote: >> >> Hi,

Re: Django comments customization issue

2012-12-26 Thread donarb
On Wednesday, December 26, 2012 11:43:47 AM UTC-8, sri wrote: > > Hi, I am trying to learn django comments customization by adding an > integer field to the comments framework. My Model looks like below > > class CommentWithRating(Comment): rating = > models.IntegerField(name='rating') > > And i

Django comments customization issue

2012-12-26 Thread sri
Hi, I am trying to learn django comments customization by adding an integer field to the comments framework. My Model looks like below class CommentWithRating(Comment): rating = models.IntegerField(name='rating') And i am trying to display the value in the rating field by using the jquery st