Sha256: 58aeb76b11314b9f9ba32b02b6dabc78979ab6b29bb10c87e4de37b2e0b06ad2
Contents?: true
Size: 720 Bytes
Versions: 21
Compression:
Stored size: 720 Bytes
Contents
<!-- preconditions/_precondition.html.erb --> <li id="<%= element_id(@precondition) %>" class="precondition"> <% if @precondition.created_at.nil? -%> <% remote_form_for @precondition do |f| -%> <%= hidden_field_tag 'scenario_id', @scenario.id %> <div> <%= f.label :description %> <%= f.text_area :description, :size => "50x2" %> <%= f.submit 'Create' %> </div> <% end -%> <% else -%> <div> <%= in_place_editor_field 'precondition', 'description' %> • <%= link_to_remote "Delete", :url => @precondition, :confirm => 'Delete this condition?', :method => :delete, :class => "delete" %> </div> <% end -%> </li>
Version data entries
21 entries across 21 versions & 1 rubygems