Sha256: 6d96cad8894b001fa124e5080c324ddc3d2e147a03296ed1d2721f877f0764d9

Contents?: true

Size: 1.25 KB

Versions: 1

Compression:

Stored size: 1.25 KB

Contents

= within_patient_layout(title: "Demographics") do

  .row
    .large-12.columns
      = render "renalware/shared/errors", model: @patient

      = simple_form_for @patient,
          url: patient_death_path(@patient),
          html: { autocomplete: "off" },
          wrapper: "horizontal_form" do |f|

        .row
          .large-12.columns
            fieldset
              legend Cause of Death
              .large-9.columns
                = f.input :died_on, as: :date_picker, label: "Date of Death"

                = f.association :first_cause,
                    label: "Cause of Death (1)",
                    label_method: :description,
                    value_method: :id,
                    include_blank: "Select 1st cause of death"

                = f.association :second_cause,
                    label: "Cause of Death (2)",
                    label_method: :description,
                    value_method: :id,
                    include_blank: "Select 2nd cause of death"

                = f.input :death_notes, label: "Notes",
                    as: :text, input_html: { rows: 5 }

        .row
          .large-12.columns
            = f.button :submit
            span= " or "
            = link_to "cancel", patient_clinical_profile_path(@patient)

Version data entries

1 entries across 1 versions & 1 rubygems

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