Sha256: dc48b8196bb0f4d63dfb626b79d6a174040937186959d6cff85928155e0cbc69

Contents?: true

Size: 1.8 KB

Versions: 16

Compression:

Stored size: 1.8 KB

Contents

= within_admin_layout(title: "Transplant Wait List Registrations") do
  ruby:
    filters = {
      active: "Active",
      suspended: "Suspended",
      active_and_suspended: "Active & Suspended",
      working_up: "Working Up",
      status_mismatch: "Status Mismatch"
    }

  h2.print-only= filters[path_params[:named_filter].to_sym]

  dl.sub-nav
    - filters.each do |key, label|
      - options = path_params.merge(named_filter: key).to_h.symbolize_keys
      - path = Renalware::Engine.routes.url_for(options.merge!(only_path: true))
      = sub_nav_item(label, path)

  table.report
    thead
      tr
        th.noprint
        th= sort_link([:renalware, q], :patient_family_name, "Patient")
        th Hosp No
        th= sort_link([:renalware, q], :patient_born_on, "Age")
        th= sort_link([:renalware, q], :patient_sex, "Sex")
        th Modal
        th= sort_link([:renalware, q], :uk_transplant_centre_code, "Site")
        th Status
        th UKT Status
        / Note patient_profile_esrf_on sorting not yet working because patient is not a
        / Renal::Patient so patient#profile does not exist. We may need to add a ransacker
        / in WaitListQuery
        th.col-width-date= sort_link([:renalware, q], :patient_profile_esrf_on, "ESRF Date")
        th.col-width-date= sort_link([:renalware, q], :entered_on, "Entry Date")
        th DOL
        th Bld Grp
        th.col-width-date= sort_link([:renalware, q], :crf_highest_value, "CRF high")
        th.col-width-date CRF high date
        th= sort_link([:renalware, q], :crf_latest_value, "CRF latest")
        th.col-width-date CRF latest date
        th Sens (CRF>60)
        th Prev Ops
        th Tx Type

    tbody
      - registrations.each do |registration|
        = render "registration", registration: registration

  = paginate registrations

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
renalware-core-2.0.15 app/views/renalware/transplants/wait_lists/show.html.slim
renalware-core-2.0.14 app/views/renalware/transplants/wait_lists/show.html.slim
renalware-core-2.0.13 app/views/renalware/transplants/wait_lists/show.html.slim
renalware-core-2.0.12 app/views/renalware/transplants/wait_lists/show.html.slim
renalware-core-2.0.11 app/views/renalware/transplants/wait_lists/show.html.slim
renalware-core-2.0.9 app/views/renalware/transplants/wait_lists/show.html.slim
renalware-core-2.0.8 app/views/renalware/transplants/wait_lists/show.html.slim
renalware-core-2.0.7 app/views/renalware/transplants/wait_lists/show.html.slim
renalware-core-2.0.5 app/views/renalware/transplants/wait_lists/show.html.slim
renalware-core-2.0.4 app/views/renalware/transplants/wait_lists/show.html.slim
renalware-core-2.0.3 app/views/renalware/transplants/wait_lists/show.html.slim
renalware-core-2.0.2 app/views/renalware/transplants/wait_lists/show.html.slim
renalware-core-2.0.1 app/views/renalware/transplants/wait_lists/show.html.slim
renalware-core-2.0.0 app/views/renalware/transplants/wait_lists/show.html.slim
renalware-core-2.0.0.pre.rc13 app/views/renalware/transplants/wait_lists/show.html.slim
renalware-core-2.0.0.pre.rc11 app/views/renalware/transplants/wait_lists/show.html.slim