Let's say, I will have two versions of show.html.erb
for the same model.
The first one, which is default, I will call as show.html.erb
.
The second one, for example - show1.html.erb
.
So, I want to use the 1st one to show on the browser, and 2nd one for print.
Do I have to create a method for this in the controller?
In general is it possible to create other views besides those that are created by scaffolding?