Sha256: 28369866d625eeb7fa28551e761d2bda23bf6463f6d00b65b049b326922a7f00

Contents?: true

Size: 1.58 KB

Versions: 21

Compression:

Stored size: 1.58 KB

Contents

%tr
  %td.starred.starable{"data-person-id" => @person.id, "data-type" => 'note', "data-action-id" => note.id, :class => (note.starred? ? "active" : "not-active") }
    ✭
  %td.toggle-truncated
    .view
      .truncated
        = truncate(note.text, :length => 100, :separator => ' ', :omission => '...')
      .not-truncated{:style => 'display:none;'}
        = simple_format note.text
        %p.muted= l note.created_at, :format => :short unless note.created_at.nil?
        %p
          = link_to("Edit", edit_person_note_path(@person, note, :format => :html), :class => "btn btn-mini edit-note-link")

  %td.person-inline-form.edit-note-form{:style => 'display:none;', :colspan => 2}
    %h4 Edit Note
    = form_for [@person, note] do |form|
      = form.text_area :text, :size => "125x5", :class => 'input-xxlarge'
      = link_to "delete", "#delete-confirm-note-#{note.id}", :class => "delete-confirm-link delete-with-trash", "data-toggle" => "modal"
      = form.submit "Save", :class => "btn btn-primary"
      = link_to 'Cancel', '#', :onclick => "$(this).parents('tr').find('td').show(); $(this).parents('tr').find('.edit-note-form').hide()", :class => 'btn'

  .modal{:id => "delete-confirm-note-#{note.id}"}
    .modal-header
      = link_to '×'.html_safe, '#', :class => 'close', 'data-dismiss' => 'modal'
      %h3 Delete note
    .modal-body
      = simple_format "Are you sure you want to delete this note?  This cannot be undone."
    .modal-footer
      = link_to "Delete this note", person_note_path(@person, note), :method => :delete, :class => "delete-confirm-link btn btn-danger"

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
artfully_ose-1.2.0.pre.23 app/views/notes/_note.html.haml
artfully_ose-1.2.0.pre.21 app/views/notes/_note.html.haml
artfully_ose-1.2.0.pre.20 app/views/notes/_note.html.haml
artfully_ose-1.2.0.pre.19 app/views/notes/_note.html.haml
artfully_ose-1.2.0.pre.18 app/views/notes/_note.html.haml
artfully_ose-1.2.0.pre.17 app/views/notes/_note.html.haml
artfully_ose-1.2.0.pre.16 app/views/notes/_note.html.haml
artfully_ose-1.2.0.pre.15 app/views/notes/_note.html.haml
artfully_ose-1.2.0.pre.12 app/views/notes/_note.html.haml
artfully_ose-1.2.0.pre.11 app/views/notes/_note.html.haml
artfully_ose-1.2.0.pre.10 app/views/notes/_note.html.haml
artfully_ose-1.2.0.pre.9 app/views/notes/_note.html.haml
artfully_ose-1.2.0.pre.8 app/views/notes/_note.html.haml
artfully_ose-1.2.0.pre.7 app/views/notes/_note.html.haml
artfully_ose-1.2.0.pre.6 app/views/notes/_note.html.haml
artfully_ose-1.2.0.pre.5 app/views/notes/_note.html.haml
artfully_ose-1.2.0.pre.4 app/views/notes/_note.html.haml
artfully_ose-1.2.0.pre.3 app/views/notes/_note.html.haml
artfully_ose-1.2.0.pre.2 app/views/notes/_note.html.haml
artfully_ose-1.2.0.pre.1 app/views/notes/_note.html.haml