Sha256: 887741809255367346bf7d82b85fb9d6efeb9ac18345d969e4de9f55bcdac0c6

Contents?: true

Size: 1.82 KB

Versions: 6

Compression:

Stored size: 1.82 KB

Contents

.document-view
  .row
    .columns.large-6
      = render "renalware/shared/attributes_group",
          legend: "Sign-In", destination: "signin",
          models: { session => [:performed_on,
                                :modality_description,
                                :hospital_unit,
                                :start_time,
                                :signed_on_by] }

      = render "renalware/shared/attributes_group",
          legend: "Sign-Off", destination: "signoff",
          models: { session => [:end_time,
                                :duration,
                                :signed_off_by] }

      = render "renalware/shared/documents/attributes_group",
          group: session.document.info,
          legend: "Session Info", destination: "info"

      = render "renalware/shared/documents/attributes_group",
          group: session.document.observations_before,
          legend: "Pre-Dialysis Observations", destination: "before"

      = render "renalware/shared/documents/attributes_group",
          group: session.document.observations_after,
          legend: "Post-Dialysis Observations", destination: "after"

    .columns.large-6
      - %W(Dialysis HDF).each do |group|
        = render "renalware/shared/documents/attributes_group",
            group: session.document.public_send(group.parameterize(separator: "_")),
            legend: group, destination: group.parameterize(separator: "_")

      - attributes_list = session.document.complications.class.attributes_list
      = render "renalware/shared/attributes_group",
          legend: "Notes/Complications", destination: "complications",
          models: { session.document.complications => attributes_list,
                    session => [:notes]  }
  .row
    .columns.large-12
      = render "prescription_administrations", session: session

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
renalware-core-2.0.0.pre.beta9 app/views/renalware/hd/sessions/_show.html.slim
renalware-core-2.0.0.pre.beta8 app/views/renalware/hd/sessions/_show.html.slim
renalware-core-2.0.0.pre.beta7 app/views/renalware/hd/sessions/_show.html.slim
renalware-core-2.0.0.pre.beta6 app/views/renalware/hd/sessions/_show.html.slim
renalware-core-2.0.0.pre.beta5 app/views/renalware/hd/sessions/_show.html.slim
renalware-core-2.0.0.pre.beta4 app/views/renalware/hd/sessions/_show.html.slim