Sha256: c73e9997e93ba7c75a3b073c533ca078dc5195cc8c485c6664f441a7929f5236

Contents?: true

Size: 658 Bytes

Versions: 7

Compression:

Stored size: 658 Bytes

Contents

<%= simple_form_for(@story, url: story_path(@story), as: :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

7 entries across 7 versions & 1 rubygems

Version Path
voluntary-0.4.0 app/views/stories/steps/_activate.html.erb
voluntary-0.3.0 app/views/stories/steps/_activate.html.erb
voluntary-0.2.4 app/views/stories/steps/_activate.html.erb
voluntary-0.2.3 app/views/stories/steps/_activate.html.erb
voluntary-0.2.2 app/views/stories/steps/_activate.html.erb
voluntary-0.2.1 app/views/stories/steps/_activate.html.erb
voluntary-0.2.0 app/views/stories/steps/_activate.html.erb