Sha256: fc4e74e7e785baf84888ae6f2940b3ad896c40b1463a9f98684627690caf44c0

Contents?: true

Size: 705 Bytes

Versions: 5

Compression:

Stored size: 705 Bytes

Contents

<h1><%= flaggable_type.classify %> <%= flag_verb %> <%= feature_name %></h1>

<% if @feature.errors.any? %>
  <ul>
    <% @feature.errors.full_messages.each do |msg| %>
      <li><%= msg %></li>
    <% end %>
  </ul>
<% end %>

<%= form_for @feature, url: request.path do |form| %>
  <%= form.fields_for "#{flaggable_type}_#{flag_type.pluralize}" do |flaggable_flag_form| %>
    <%= render "flaggable_flag_fields", f: flaggable_flag_form %>
  <% end %>

  <%= link_to_add_fields "Add #{flag_noun.capitalize}", form, "#{flaggable_type}_#{flag_type.pluralize}", :flaggable_flag_fields %>

  <hr>

  <%= form.submit "Update #{flag_noun.capitalize.pluralize}", class: "btn btn-primary pull-left" %>
<% end %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
detour-0.0.14 app/views/detour/flaggable_flags/index.html.erb
detour-0.0.13 app/views/detour/flaggable_flags/index.html.erb
detour-0.0.12 app/views/detour/flaggable_flags/index.html.erb
detour-0.0.11 app/views/detour/flaggable_flags/index.html.erb
detour-0.0.10 app/views/detour/flaggable_flags/index.html.erb