Django Website Basics – Models And Forms
This series looks at Python and Django. We continue our tutorials by exploring the steps to build a Django website. There are a few keys areas to understand, and then we are off and running. In this presentation, we introduce forms, models, views, and URLs. Forms and Views Our last presentation was an introduction to the models and building a database. We start with a review and then tie those items to the front-end of our solution. We can quickly use templates to create a modern web application. The Django framework even pushes us to do this in a manner that is easy to maintain. Views provide our routing logic, and then we jump into scripting out our HTML pages... Read more