Klienci - notatki
<%= link_to raw(' Nowa notatka'), new_note_path(client_id: @client.id), class: "text-primary" %>
<% @notes.each do |note| %> <% end %>
Nazwa Zawartość Akcje
<%= note.name %> <% short_content = truncate(note.content, length: 30, separator: ' ', omission: '...') %>
<% if note.content.length > 30 %>
<%= raw simple_format(short_content) %>
<%= raw simple_format(note.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ąć?' } %>