Sha256: 0831be6712e2c365180e3974ec34debef43574ef3797d45b80c08afa939b1683

Contents?: true

Size: 580 Bytes

Versions: 2

Compression:

Stored size: 580 Bytes

Contents

.panel.panel-default
  .panel-heading
    %i.icon-edit.icon-large
    = yield :form_title
  .panel-body
    = simple_form_for([:hq, @user]) do |f|
      = f.error_notification

      .form-inputs
        = f.input :name
        = f.input :surname
        = f.input :email
        = f.input :time_zone, input_html: { class: 'chosen-select'}, include_blank: t('view.select')

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cybele-1.9.1 templates/app/views/hq/users/_form.html.haml
cybele-1.9.0 templates/app/views/hq/users/_form.html.haml