tags:

views:

274

answers:

2

I would like to display a list of records from my database, then for each record, have two fields which the user can edit in place without needing to be directed to another page for editing. How do I go about this

+2  A: 

Create a template for your page which holds the HTML for the list, the edit fields and a submit button. You can use the existing admin templates for guidance. Define a view function which handles the post and updates the database.

Vinay Sajip
never knew it was that simple...thanks I'll try it
A: 

See Here Hope can help you.

python