Sha256: ee960375f2254c522611c8fba5b59fd5f0a6ee4f748edf24dc7362cf3b41abc6

Contents?: true

Size: 621 Bytes

Versions: 8

Compression:

Stored size: 621 Bytes

Contents

<%= simple_form_for(@story, html: {class: 'floating_form form-vertical'}) do |f| %>
  <%= render partial: 'shared/form/error_messages', locals: { resource: @story } %>
  <% if step == :activate %>
  <input type="hidden" name="next_step" value="1"/>
  <% end %>
  <div class="form-inputs">
    <%= render partial: 'tasks/collection', locals: { 
      collection: @story.tasks.select{|t| !t.new_record? }, 
      options: { current_parent: @story, columns: @step_presenter.task_columns } 
    } 
    %>
  </div>
    
  <div class="form-actions">
    <%= f.button :submit, t('general.events.activate') %>
  </div>
<% end %>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
voluntary-0.1.0 app/views/stories/steps/_activate.html.erb
voluntary-0.1.0.rc4 app/views/stories/steps/_activate.html.erb
voluntary-0.1.0.rc3 app/views/stories/steps/_activate.html.erb
voluntary-0.1.0.rc2 app/views/stories/steps/_activate.html.erb
voluntary-0.1.0.rc1 app/views/stories/steps/_activate.html.erb
voluntary-0.0.3 app/views/stories/steps/_activate.html.erb
voluntary-0.0.2 app/views/stories/steps/_activate.html.erb
voluntary-0.0.1 app/views/stories/steps/_activate.html.erb