I am wondering how I can update and access django database information while I am inside of a view.
For example, if I was given an HttpRequest inside a view that passed a username and password parameter, and I had already set up a User model with a database in my 'framework' project, how would I go about checking my 'framework_users' database for that username and password?
Thank you in advance for any help you might give.