Render the Form

Render the form we created in the previous lesson.

Render the searchform in a view

In this lesson, we are going to render our searchform in a view, and then have that view rendered in a template.

NOTE: In this lesson, we will get the code that we used in the Using Static Files in Django lesson and build upon it.

Step 1: Make a view for a form

In this step, we are going to define a view called forms. See ...