Sha256: d2f56134d01b06f7eb1e3fe0c6203174ccb88abe51fd18fa426d67cdbf0b3166

Contents?: true

Size: 1.63 KB

Versions: 16

Compression:

Stored size: 1.63 KB

Contents

- clinical_patient = Renalware::Clinical.cast_patient(protocol.patient)

- content_for(:head) do
  = wicked_pdf_stylesheet_link_tag "renalware/protocol_pdf"

- protocol.with_format("html") do
  .protocol

    = render "renalware/patients/header", patient: protocol.patient
    table.protocol-patient-summary
      thead
        tr
          th.protocol-hd-profile HD Profile
          th.protocol-allergies
            = clinical_patient.allergy_status&.text
            - if clinical_patient.allergy_status_updated_at
              span.allergy_status_updated_at
                = "#{l(clinical_patient.allergy_status_updated_at&.to_date)}"
          th.protocol-prescriptions Prescriptions on HD
          th.protocol-recent-pathology Recent Pathology
      tbody
        tr
          td= render "profile", profile: protocol.profile
          td= render "allergies", patient: protocol.patient
          td= render "prescriptions", prescriptions: protocol.prescriptions
          td= render "recent_pathology", recent_pathology: protocol.recent_pathology

    .row.collapse
      .small-12.columns
        table.auto-layout.protocol-sessions
          = render "renalware/hd/sessions/thead"
          tbody
            - 1..3.times do
              = render "renalware/hd/sessions/empty_row", session: session
            - protocol.sessions.each_with_index do |session, index|
              - stripe_class = index % 2 == 0 ? "even" : "odd"
              = render "renalware/hd/sessions/row",
                       session: session,
                       stripe_class: stripe_class

.page-break

- protocol.with_format("html") do
  .protocol
    h2 Acute observations

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
renalware-core-2.0.9 app/views/renalware/hd/protocols/show.pdf.slim
renalware-core-2.0.8 app/views/renalware/hd/protocols/show.pdf.slim
renalware-core-2.0.7 app/views/renalware/hd/protocols/show.pdf.slim
renalware-core-2.0.5 app/views/renalware/hd/protocols/show.pdf.slim
renalware-core-2.0.4 app/views/renalware/hd/protocols/show.pdf.slim
renalware-core-2.0.3 app/views/renalware/hd/protocols/show.pdf.slim
renalware-core-2.0.2 app/views/renalware/hd/protocols/show.pdf.slim
renalware-core-2.0.1 app/views/renalware/hd/protocols/show.pdf.slim
renalware-core-2.0.0 app/views/renalware/hd/protocols/show.pdf.slim
renalware-core-2.0.0.pre.rc13 app/views/renalware/hd/protocols/show.pdf.slim
renalware-core-2.0.0.pre.rc11 app/views/renalware/hd/protocols/show.pdf.slim
renalware-core-2.0.0.pre.rc10 app/views/renalware/hd/protocols/show.pdf.slim
renalware-core-2.0.0.pre.rc9 app/views/renalware/hd/protocols/show.pdf.slim
renalware-core-2.0.0.pre.rc8 app/views/renalware/hd/protocols/show.pdf.slim
renalware-core-2.0.0.pre.rc7 app/views/renalware/hd/protocols/show.pdf.slim
renalware-core-2.0.0.pre.rc6 app/views/renalware/hd/protocols/show.pdf.slim