14 lines
221 B
Text
14 lines
221 B
Text
%h1.big_text
|
|
=link_to 'albums', albums_path
|
|
>>
|
|
new album
|
|
|
|
= form_for @album do |f|
|
|
= f.error_messages
|
|
%p
|
|
= f.label :name
|
|
= f.text_field :name
|
|
%p
|
|
= f.submit
|
|
|
|
%p= link_to "Back to List", albums_path
|