| Nazwa | Zawartość | Akcje |
|---|---|---|
| <%= note.name %> |
<% short_content = truncate(note.content, length: 30, separator: ' ', omission: '...') %>
<% if note.content.length > 30 %>
<%= raw simple_format(short_content) %>
<% else %>
<%= raw simple_format(short_content) %>
<% end %>
|
<%= link_to raw(' Edycja'), edit_note_path(note, client_id: @client.id), class: "btn btn-primary btn-xs" %> <%= link_to raw(' Usuń'), note_path(note, client_id: @client.id), class: "btn btn-danger btn-xs", method: :delete, data: { confirm: 'Czy na pewno usunąć?' } %> |