Sha256: 6de91f27b6ac367f67bfa2bdea037dc5f659e116f7b6dd9558a7e53b2fe6174a

Contents?: true

Size: 898 Bytes

Versions: 2

Compression:

Stored size: 898 Bytes

Contents

.modal
  .modal__header
    h2
      = "#{controller.action_name.capitalize} Patient Contact /"
      |  
    h3.muted= contact
    = render "renalware/shared/modal_close_link"

  .modal__body
    = render "renalware/shared/errors", model: contact

    = simple_form_for(contact,
                      url: patient_letters_contact_path(patient, contact),
                      method: :patch,
                      remote: true,
                      wrapper: :horizontal_form) do |f|

      = f.input :default_cc, as: :inline_radio_buttons, readonly: nil
      = f.input :description_id, collection: contact_descriptions
      = f.input :other_description
      = f.input :notes, as: :text

      = f.submit class: :button
      '  or
      = link_to t("btn.cancel"),
               "#",
               "aria-label" => "Close",
                class: "reveal-modal-close"

    .modal__footer

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
renalware-core-2.1.1 app/views/renalware/letters/contacts/_edit.html.slim
renalware-core-2.1.0 app/views/renalware/letters/contacts/_edit.html.slim