views:

76

answers:

1

Hi to all!

I have a question regarding editing/saving data in database using Django.

I have template that show data from database. And after each record i have link that link you to edit page. But now is the question how to edit data in db without using admin panel?

I run thought tutorial in djangobook but i didn't see how to achieve this without using the shell

Thanks in advice!

+1  A: 

Have a look at the "Working with forms" section in the Django documentation.

Mark van Lent