Sha256: 1738a9932a25291bc1a263b72dc846d4f82f0ee65bd2a8a8137add6734aa041c

Contents?: true

Size: 1.01 KB

Versions: 2

Compression:

Stored size: 1.01 KB

Contents

= within_admin_layout(title: "AKI Alerts") do
  table.aki-alerts
    thead
      th
      th Patient
      th.col-width-nhs-no NHS No.
      th.col-width-reference Hosp. No.
      th.col-width-tiny Sex
      th.col-width-tiny Age
      th.col-width-date Born on
      th Action
      th Ward
      th Hotlist
      th Max CRE
      th.col-width-date  CRE Date
      th Max AKI
      th.col-width-date  AKI Date
      th Decided by
    tbody
      - alerts.each do |alert|
        tr
          td= link_to("Edit", edit_renal_aki_alert_path(alert))
          td= default_patient_link(alert.patient)
          td= alert.patient.nhs_number
          td= alert.patient.hospital_identifiers
          td= alert.patient.sex
          td= alert.patient.age
          td= alert.patient.born_on
          td= alert.action
          td= alert.hospital_ward
          td= yes_no alert.hotlist?
          td= alert.max_cre
          td= l(alert.cre_date)
          td= alert.max_aki
          td= l(alert.aki_date)
          td= alert.decided_by

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
renalware-core-2.0.0.pre.rc13 app/views/renalware/renal/aki_alerts/index.html.slim
renalware-core-2.0.0.pre.rc11 app/views/renalware/renal/aki_alerts/index.html.slim