Sha256: 126b2cff269aca81a15c83020b2a41c8fd029342c534e80dba41302cff82bb10

Contents?: true

Size: 991 Bytes

Versions: 1

Compression:

Stored size: 991 Bytes

Contents

= within_admin_layout(title: "Patients") do
  = render "renalware/patients/index_header"


  table#patients-deceased
    thead
      tr
        th.col-width-large
        th Name
        th.col-width-nhs-no NHS No.
        th.col-width-reference-no Hosp No.
        th.col-width-tiny Sex
        th.col-width-date Date of Birth
        th.col-width-date Date of Death
        th.col-width-tiny Age

    tbody
      - @patients.each do |patient|
        tr
          td
            = link_to "Demographics", patient_path(patient), title: "Demographics"
            = pipe_separator
            = link_to "Edit death details",
                      edit_patient_death_path(patient),
                      title: "Edit death details"
          td= patient.to_s(format: :default)
          td= patient.nhs_number
          td= patient.hospital_identifier
          td= patient.sex
          td= l patient.born_on
          td= l patient.died_on
          td= patient.age

  = paginate @patients

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
renalware-core-2.0.0.pre.beta4 app/views/renalware/deaths/index.html.slim