- Use the
render
method to render partials - Understand how the name of a partial turns into its filename
- Practice rendering partials in a different folder
Flatiron is building out a new system to keep track of students in its classes. You just joined the technical team and see that there's lots of repetition in the view layer of the code base. Use your new knowledge of partials to remove the duplication.
First, fork and clone the lab.
We've provided a seed file so you can have some data to play around with. Run rake db:seed
to seed the database.
- Remove the duplicated code in the
students/edit.html.erb
andstudents/new.html.erb
files by making a partial calledstudents/_form.html.erb
. - Remove the duplicated code in the
classrooms/show.html.erb
andstudents/show.html.erb
files by making a partial calledstudents/_student.html.erb
.
View Simple Partials Lab on Learn.co and start learning to code for free.