pic_vert_app/app/views/notes/index.html.haml
2013-01-08 22:47:42 +01:00

24 lines
411 B
Plaintext

%h1 Listing notes
%table
%tr
%th Subject
%th Message
%th User
%th
%th
%th
- @notes.each do |note|
%tr
%td= note.subject
%td= note.message
%td= note.user
%td= link_to 'Show', note
%td= link_to 'Edit', edit_note_path(note)
%td= link_to 'Destroy', note, :confirm => 'Are you sure?', :method => :delete
%br
= link_to 'New Note', new_note_path