Sha256: aea0770949c64468d1a0bb5257fc2842185acb223b0a876dbe7e58429930a9b9

Contents?: true

Size: 628 Bytes

Versions: 6

Compression:

Stored size: 628 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 %>
  <%= render partial: 'tasks/collection', locals: { 
    collection: @story.tasks.select{|t| !t.new_record? }, 
    options: { current_parent: @story, columns: @step_presenter.task_columns, append_new_link: false } 
  } 
  %>
  <div class="form-group">
    <%= f.button :submit, t('general.events.activate') %>
  </div>
<% end %>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
voluntary-0.7.1 app/views/stories/steps/_activate.html.erb
voluntary-0.7.0 app/views/stories/steps/_activate.html.erb
voluntary-0.6.0 app/views/stories/steps/_activate.html.erb
voluntary-0.5.2 app/views/stories/steps/_activate.html.erb
voluntary-0.5.1 app/views/stories/steps/_activate.html.erb
voluntary-0.5.0 app/views/stories/steps/_activate.html.erb