Working with Django Forms
Cant any one give me a little bit insights on Django's forms, how to work with it and what are 开发者_StackOverflow中文版bound and unbound forms?
A bound form is a form with data on its field, hence it can do validation. An unbound form is a form with no data on it (new initialized forms).
You should look and the official Django's guide on working with forms and its API.
精彩评论