Sha256: da8422648f9c48e031d97e4e171e6b5edab65658182874de023a4bf486aa2f96

Contents?: true

Size: 464 Bytes

Versions: 3

Compression:

Stored size: 464 Bytes

Contents

.card
  .card-header
    %i.fas.fa-edit
    = yield :form_title
  .card-body
    = simple_form_for([:hq, user]) do |f|
      = f.error_notification

      .form-inputs
        = f.input :name
        = f.input :surname
        = f.input :email

      .form-actions
        - text = user.persisted? ? t('view.btn.update') : t('view.btn.add')
        = f.button :submit, text, class: 'btn btn-primary'
        = link_to t('view.cancel'), hq_users_path, class: 'btn'

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cybele-2.3.2 templates/app_files/app/views/hq/users/_form.html.haml
cybele-2.3.1 templates/app_files/app/views/hq/users/_form.html.haml
cybele-2.2.0 templates/app_files/app/views/hq/users/_form.html.haml