Sha256: d3f8d9dff4979c3cfe8d4cb50dbfb5ff4df3241c7ee0b6ebaa9ffd1a5e5a9787

Contents?: true

Size: 1.58 KB

Versions: 2

Compression:

Stored size: 1.58 KB

Contents

table.letters.electronic-ccs.has-togglable-rows
  thead
    tr
      th.col-width-date Date
      th.col-width-medium Author
      th.col-width-large Patient
      th Description
      th.col-width-small

  tbody
    - receipts.each do |receipt|
      - letter = Renalware::Letters::LetterPresenter.new(receipt.letter)
      tr(id=receipt.html_identifier)
        td= l(letter.issued_on)
        td= letter.author
        td= link_to letter.patient, patient_clinical_summary_path(letter.patient)
        td= letter.description
        td.actions
          = link_to "Toggle", "##{receipt.html_preview_identifier}", data: { behaviour: "toggler" }
          = pipe_separator
          = link_to letter.view_label,
                    patient_letters_letter_path(letter.patient, letter, back_url: request.fullpath)

      = content_tag(:tr, id: receipt.html_preview_identifier, style: "display: none")
        td
        td(colspan=3)
          .quick-preview
            = simple_format letter.body

        td.nowrap
          - if policy(receipt).mark_as_read?
            ul.actions
              li= link_to "Keep as unread",
                          "##{receipt.html_preview_identifier}",
                          data: { behaviour: "toggler" },
                          class: "button secondary keep-as-unread"

              li= link_to(mark_as_read_letters_letter_electronic_receipt_path(letter, receipt),
                          class: "button mark-as-read",
                          method: :patch,
                          remote: true) do
                i.fa.fa-check
                | Mark as read


Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
renalware-core-2.0.0.pre.beta9 app/views/renalware/letters/electronic_receipts/_table.html.slim
renalware-core-2.0.0.pre.beta8 app/views/renalware/letters/electronic_receipts/_table.html.slim