Sha256: 87b536b6993381819e4636c34565619b9b1c8b2d4a972444b3947a25bc00ba9f

Contents?: true

Size: 972 Bytes

Versions: 3

Compression:

Stored size: 972 Bytes

Contents

- unless event.request_collecting_state == :not_initialized
  .row.form
    .col-lg-12
      %h1.text-center
        = t(".request_collecting_state.#{event.request_collecting_state}")
      - if event.request_collecting_state == :are_being_right_now && event.participant_form_fields.any?
        - class_name = 'tramway_event_participant'
        = simple_form_for @participant_form, url: ::Tramway::Event::Engine.routes.url_helpers.participants_path, method: :post, html: { class: class_name, id: class_name } do |f|
          = f.input :event_id, as: :hidden, input_html: { value: event.id, class: class_name, id: "#{class_name}_event_id", name: "#{class_name}[event_id]" }
          - event.participant_form_fields.inputs_list.each do |field|
            = render 'tramway/shared/input_extended', field: field, class_name: class_name, f: f, value: (params[:participant].present? ? params[:participant][field.title] : '')
          = f.button :submit, t('.submit_form')

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tramway-event-2.0.1 app/views/tramway/event/participants/_form.html.haml
tramway-event-2.0.0.1 app/views/tramway/event/participants/_form.html.haml
tramway-event-2.0 app/views/tramway/event/participants/_form.html.haml