Sha256: d071cbbb0070604d270da5277bfeec31c7640092513b4878bdd6d42fea2aecc9

Contents?: true

Size: 582 Bytes

Versions: 2

Compression:

Stored size: 582 Bytes

Contents

.panel.panel-default
  .panel-heading: .panel-title
    = icon :check_square_o
    = " "
    - if @task.persisted?
      = t("actions.update")
      = " : "
      = @task

    - else
      =  t('actions.new_task')

  .panel-body
    = horizontal_form_for @task, as: :task do |f|
      = f.input :name
      = f.input :description
      = f.input :reminder, html5: true
      = f.input :term,     html5: true

      = f.hidden_field :taskable_id
      = f.hidden_field :taskable_type
      = f.input :owner_guid, collection: @owners.map{ |e| [e.to_s, e.guid] }

      = form_buttons

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dorsale-3.3.0 app/views/dorsale/flyboy/tasks/_form.html.slim
dorsale-3.2.0 app/views/dorsale/flyboy/tasks/_form.html.slim