Improved Error Reporting in Django - GSoC

2012-03-19 Thread Sachin Gupta
Hi, My name is Sachin Gupta and I am student of Indian Institute of Technology Roorkee, in my final year of undergraduate course in Computer Science. I have been developing a project entirely based on Django for the last 4 months. Here is the link <http://www.mycareerstack.com/> and

Re: Improved Error Reporting in Django - GSoC

2012-03-20 Thread Sachin Gupta
Hi Andrew As about the silent template failure I was not very sure if it was a deliberate design decision, but since it a deliberate design decision I would not like to change it. Since I did both the backend and template editing, it appeared to me that some error should have come. But I

Re: auth.User refactor: reboot

2012-03-20 Thread Sachin Gupta
Hi I have just been using Django for the last 4 months, and the application I developed needed an extensive UserProfile module. It needed things such as 1. Ability to log in via both email and username 2. Ability to link multiple social accounts with the same user account (the

Re: Improved Error Reporting in Django - GSoC

2012-03-20 Thread Sachin Gupta
Hi Andrew I am going through the errors on this page https://code.djangoproject.com/wiki/BetterErrorMessages particularly the django.db errors. The error which is listed on the page might not be updated For the error message OperationalError: Unable to close due to unfinalised statements The

How to generate an edit form for django comments

2012-07-04 Thread Sachin Gupta
Hi, I wanted to have a functionality to be able to edit the comments posted using the comments app (not from the admin, from the site and only for logged in users). As much as I know Django, to render an edit form we need to pass an instance of the object to the form which has to be edited